标签:
1、鉴别引用类型:
1 var items = []; 2 var boject = {}; 3 function reflect(value){ 4 return value; 5 } 6 7 console.info(items instanceof Array); true 8 console.info(object instanceof Object); true 9 console.info(reflect instanceof Function); true
2、鉴别数组:Array.isArray(items);
3、in操作符是检测对象中属性是否存在的最好途径
4、hasOwnProperty()
"name" in person1 person1.hasOwnProperty("name")
5、禁止修改对象
A:禁止扩展
B:对象封印
C:对象冻结
标签:
原文地址:http://www.cnblogs.com/zhanghuiyun/p/5658274.html