EcmaScript5 特性
我对 ES3 有一定的了解,但我不太了解 ES5 的功能。我 - 或多或少 - 了解:
Object.create()
,Object.freeze()
"use strict"
- getters 和 setters
- 方法 的
map()
、filter()
、every()
、some()
- Array.prototype JSON.parse()
但我确信我错过了其他好东西。此外,我不知道上述所有细节:例如我不确定“use strict”
的所有效果。
有没有一个好的资源可以学习 ES5 的所有细节,特别是将其构造为 ES3,而不需要阅读 最终最终最终草案?
I have a fair knowledge of ES3, but I'm not really up to date about the features of ES5. I - more or less - know about:
Object.create()
,Object.freeze()
"use strict"
- getters and setters
- the methods
map()
,filter()
,every()
,some()
of Array.prototype JSON.parse()
but I'm sure I am missing other goodies. Moreover, I do not know all the details about the above: for instance I am not sure about all the effects of "use strict"
.
Is there a good resource where to learn all the ins and outs of ES5, in particular constrsting it to ES3, short of reading the final final final final draft?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 合规表
然后只需在 MDN 上搜索每个功能即可。
还有一篇 john resig</a> 的文章
似乎还有一个 < href="https://developer.mozilla.org/En/JavaScript/ECMAScript_5_support_in_Mozilla" rel="nofollow">Mozilla 页面
Check out the Compliance table
Then just search for each feature on the MDN.
There's also an article by john resig
There also seems to be a page at Mozilla