当前位置:  开发笔记 > 编程语言 > 正文

如何以编程方式将箭头功能与常规功能区分开?

如何解决《如何以编程方式将箭头功能与常规功能区分开?》经验,为你挑选了0个好方法。

箭头函数和常规函数之间没有明显区别。

({}).toString.call(function () {})
"[object Function]"
({}).toString.call(() => {})
"[object Function]"

要么

console.dir( (function () {}) )
function anonymous()
    arguments: null
    caller: null
    length: 0
    name: ""
    prototype: Object
    __proto__: ()
    
console.dir( (() => {}) )
function anonymous()
    arguments: (...)
    caller: (...)
    length: 0
    name: ""
    __proto__: ()
    

两者的行为不同,并且有一个有效的用例可以区分两者。

如何以编程方式将箭头功能与常规功能区分开?

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有