gpt4 book ai didi

javascript - ECMAScript 5 在任何浏览器中可用吗?

转载 作者:数据小太阳 更新时间:2023-10-29 05:13:22 25 4
gpt4 key购买 nike

我想尝试一些新的 ECMAScript 5 功能。我想做一些类似于谷歌搜索时发现的代码的事情:

var obj = {};
Object.defineProperty( obj, "value", {
value: true,
writable: false,
enumerable: true,
configurable: true
});

(function(){
var name = "John";

Object.defineProperty( obj, "name", {
get: function(){ return name; },
set: function(value){ name = value; }
});
})();

print( obj.value )
// true

print( obj.name );
// John

obj.name = "Ted";
print( obj.name );
// Ted

这一切都可能吗??

最佳答案

这是一个很好的兼容性表:http://kangax.github.com/es5-compat-table/

为了完整起见,还有 ECMA6 的表格和 non-standard特点。

关于javascript - ECMAScript 5 在任何浏览器中可用吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10094621/

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