js 对象方法(实例方法) 类方法 原型方法

js 对象方法(实例方法) 类方法 原型方法 function Animal() { //实例属性 this.name = name || 'Animal'; //实例方法 this.sleep = function () { console.log(this.name + "正在睡觉") } this.pla
相关文章
相关标签/搜索