您的位置:首页 > Web前端 > JavaScript

javascript 随笔--类型

2012-04-01 11:28 387 查看
4.3.19Number valueprimitive value corresponding to a double-precision 64-bit binary format IEEE 754 valueNOTE A Number value is a member of the Number type and is a direct representation of a number.4.3.20Number typeset of all possible Number values including the special ―Not-a-Number‖ (NaN) values, positive infinity, and negative infinity4.3.21Number objectmember of the Object type that is an instance of the standard built-in Number constructorNOTE A Number object is created by using the Number constructor in a new expression, supplying a Number value as an argument. The resulting object has an internal property whose value is the Number value. A Number object can be coerced to a Number value by calling the Number constructor as a function (15.7.1).

http://izs.me/v8-docs/hierarchy.html v8引擎文档
http://club.cnodejs.org/topic/4f16442ccae1f4aa270010c1 一篇关于v8与js的文章
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: