gpt4 book ai didi

javascript - 使用下划线检查自己的属性

转载 作者:行者123 更新时间:2023-12-03 11:07:42 29 4
gpt4 key购买 nike

使用下划线检查global对象是否拥有Nodejs控制台上的parseInt函数,

U = require('underscore')

U.contains(U.keys(global), 'parseInt') // false

U.has(global, 'parseInt') // true

为什么上面给出相反的结果?

最佳答案

Object.keys 返回其描述符标记为可枚举的对象属性。在这种情况下,parseInt 是不可枚举的:

例如

Object.getOwnPropertyDescriptor(global, 'parseInt')

{
"writable":true,
"enumerable":false,
"configurable":true,
"value": function parseInt(){ ...}
}

关于javascript - 使用下划线检查自己的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27769247/

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