V8引擎的javascript语言规范
Nodejs 基于 v8 引擎,我认为 javascript 语言必须更改或弃用某些内容。有什么文件或者书籍吗?
nodejs is base on v8 engine, I think something must be changed or deprecated for javascript language. Any documents or books ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 Node.js 的 wiki 页面:
请参阅:https://github.com/ry/node/wiki/ECMA-5-Mozilla-Features-Implemented-in-V8
V8 实现的一些 ES5 功能是例如:
map
和forEach
等数组方法,create
或keys< 等新的
Object
函数/code>、String
方法(如trim()
)以及定义 getter 和 setter 的能力。有关完整列表,请参阅上面的链接。
From Node.js's wiki page:
See: https://github.com/ry/node/wiki/ECMA-5-Mozilla-Features-Implemented-in-V8
Some of ES5's features that V8 implements are for example: Array methods like
map
andforEach
, the newObject
functions likecreate
orkeys
,String
methods liketrim()
as well as the ability to define getters and setters.For a full list see the above link.
从项目主页:
您需要继续阅读历史部分今天获得第三版。
From the homepage for the project:
You'll need to follow through to the historical section to get 3rd edition today.