关于函数名前面加new到底是什么意思
function Person(){}
function Student(){}
Student.prototype = new Person();
是不是这里的 new Person() 就是指的Person() 函数啊。 为什么前面要加new
function Person(){}
function Student(){}
Student.prototype = new Person();
是不是这里的 new Person() 就是指的Person() 函数啊。 为什么前面要加new
2017-04-12
举报