console.log(typeof null); console.log(null instanceof Object);
解析: JavaScript最初设计问题导致。 null不是从Object的prototype继承来的。
答案: Object,false
编号: 36