console.log(typeof Number.prototype)//object
console.log(typeof Function.prototype)//function
console.log(typeof Object.prototype,Object.__proto__.__proto__.__proto__)//object null
console.log(Function.prototype instanceof Object)//true
万物皆对象,都是null