标签:
ECMAScript提供了个特殊的引用类型:Boolean;Number;String;
1不能在运行时为基本类型添加属性,不然会被销毁,例子如下:
var s1 = "some text"; s1.color = ‘red‘; alert(s1.color);//undefined
基本包装类型
原文地址:http://www.cnblogs.com/shenq/p/5184433.html