Skip to content
promise96319
Search
K
Main Navigation
文章
Electron
框架系列
Vue v2 源码
Vue v3 源码
React v17 源码
基建系列
Webpack 系列
Rollup 系列
Vite 系列
Babel 系列
JS 系列
ES6
Node
Typescript
计算机基础
算法
数据结构
设计模式
网络
LeetCode
开发
工具
配置
资料
项目
Appearance
Menu
Return to top
On this page
es6
https://es6.ruanyifeng.com/#README
怎么查看function源码?
通过
toSource()
方法:
对于内置的方法,返回 native code 字符串。 chrome的js引擎是c++写的, Function是JS中基础组件, 其中的方法应该都是c++实现的, 所以打印时直接告诉这是native code。
javascript
function
Function
() {
[native code]
}
对于自定义函数,返回该函数的js源码