gpt4 book ai didi

javascript - var myFunc = new Object(function myFunc () {}) 和 function myFunc () {} 有什么区别?

转载 作者:行者123 更新时间:2023-12-02 23:41:19 28 4
gpt4 key购买 nike

我不知道你可以使用 new Object 创建函数:

var myFunc = new Object(function myFunc () {})

查看控制台,它似乎与以下内容相同:

function myFunc () {}

是否有理由使用 new Object 来创建函数?

最佳答案

根据Object(...) documentation:

The Object constructor creates an object wrapper for the given value. If the value is null or undefined, it will create and return an empty object, otherwise, it will return an object of a Type that corresponds to the given value. If the value is an object already, it will return the value.

函数是对象,因此它只会返回函数。 new Object(...) 部分是无操作的。所以代码基本上就是:

  var myFunc = function myFunc() { }

那就是 barely equal to a function declaration

关于javascript - var myFunc = new Object(function myFunc () {}) 和 function myFunc () {} 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56057389/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com