1.三类对象,两类属性

2.原型链只有在查询的时候才会体现

3.对象属性访问

4.属性赋值

5.delete只是断开属性和宿主对象的关系,不会去操作属性中的属性

6.Object.ke()
var m = {b:'bbb',c:'ccc'};
var n = Object.create(m);
n.d = 'ddd';
console.log(Object.keys(m));//["b","c"]
console.log(Object.keys(n));//["d"]
7.序列和反序列,反序列后原型改变
var a = Object.create(null);
console.log('a.prototype:' + Object.getPrototypeOf(a));
//a.prototype:null
var b = JSON.parse(JSON.stringify(o));
console.log('b.prototype:' + Object.getPrototypeOf(b));
//b.prototype:[object Object]
7.数组是特殊的对象

8.数组的非整数索引

9.concat方法

10.splice方法

11.forEach循环终止


12.函数作为参数

例:forEach,ajax,each,sort等。。。