如题
function func () {}
console.log(func.prototype) // Object {}
var fn = func.bind(this)
console.log(fn.prototype) // undefined ?
相关分类