一、首先抛出疑问:
原始值为啥添加属性而且不会报错 ???
var str = 'a';
str.name = 'abc';
console.log(str.name); //
就是因为原始值要经过包装类
var str = 'abc';
str.length = 2;
// new String('abc').length = 2; delete
console.log(str); // abc
// new String('abc').length --> 这个 length 方法,是字符串对象自带的属性
console.log(str.length); // 3 --> 这是 new String('abc') 的结果var num = 123;
num.name = 'abc';
console.log(num.name); // undefined
/*new Number(num).name = 'abc' --> deletenew Number(num).name, 此时结果为
*/
小案例
var str = 'abc';
str += 1;
var test = typeof(str); // test == 'string'
if (test.length === 6) {test.sign = 'typeof 的返回结果可能为 String ';// new String(test).sign = 'xxx'; ---> 然而字符串对象没有这个方法
}console.log(test.sign); // undefined
------------------------------------------------------function Person(name, age, sex) {var a = 0;this.name = name;this.age = age;this.sex = sex;function sss() {a ++;console.log(a);}this.say = sss; // 如果谁调用了 say , 那么 say 就会变成一个闭包被返回出去, 而变量 a 就会成为 sss 的私有化变量
}var person = new Person();
person.say(); // 1
person.say(); // 2
var person1 = new Person();
person1.say(); // 1
person1.say(); // 2
var x = 1, y = z = 0;function add(n) {return n = n + 1;
}y = add(x);function add(n) { return n = n + 3;
}z = add(x);// x : 1
// y : 4 --> 因为函数名如果重复了,就会以最后一个为准
// z : 4
包装类有哪些???
new Number()
new String()
new Boolean()