码迷,mamicode.com
首页 > 其他好文 > 详细

基本包装类型

时间:2016-02-07 02:18:37      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

ECMAScript提供了个特殊的引用类型:Boolean;Number;String;

1不能在运行时为基本类型添加属性,不然会被销毁,例子如下:

var s1 = "some text";
        s1.color = ‘red‘;
        alert(s1.color);//undefined

  

基本包装类型

标签:

原文地址:http://www.cnblogs.com/shenq/p/5184433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!