扫码关注官方订阅号
for(var i in window.Math){console.log(i);}打印undefined
认证高级PHP讲师
可以for出来的都是可枚举的,但是:
> Math.propertyIsEnumerable("E") false
我猜测,是因为Math里面的东西。设置了不可迭代。也不知道对不对。
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
可以for出来的都是可枚举的,但是:
我猜测,是因为Math里面的东西。设置了不可迭代。也不知道对不对。