-
历史遗留问题查看全部
-
js中检测类型的方法查看全部
-
extensible:有关对象属性的是否可扩展问题。查看全部
-
get/set与原型链查看全部
-
属性getter/setter方法查看全部
-
Navigated to http://www.imooc.com/video/7053/0 function Person(name,age){this.name = name;this.age=age;}Person.prototype.hi=function(){console.log('Hi,my name is'+this.name+',I am'+this.age+'years old now.');};Person.prototype.LEGS_NUM=2;Person.prototype.ARMS_NUM=2;Person.prototype.walk=function(){console.log(this.name+"is walking...");};function Student(name,age,className){Person.call(this,name,age);this.className=className;}Student.prototype=Object.create(Person.prototype);Student.prototype.constructor=Student;Student.prototype.hi=function(){console.log('Hi,my name is'+this.name+',i am'+this.age+'years old now,and from'+this.className+'.');};Student.prototype.learn=function(subject){console.log(this.name+'is learning'+subject+'at'+this.className+'.');}; function (subject){console.log(this.name+'is learning'+subject+'at'+this.className+'.');} var bosn = new Student('Bosn',23,'Class 3,Grade 2'); undefined bosn.hi();查看全部
-
很棒哦。查看全部
-
火狐MDN:http://developer.mozilla.org/zh-CN/learn/javascript查看全部
-
getOwnPropertyDescriptor 获取指定对象自己的属性描述符。 自己的属性描述符是直接在对象上定义的描述符,而不是从对象的原型继承的描述符。查看全部
-
for in 会把原型链上的属性也显示出来查看全部
-
defineProperty(对象,属性名,{是否枚举,属性值});用这个方法创建属性,enumerable默认是false(可以不写)查看全部
-
hasOwnProperty 对象是否拥有原型 propertyIsEnumerable 对象属性是否可以枚举查看全部
-
//把o上的属性变成obj原型链上的属性 var obj = Object.create(o);查看全部
-
属性检测。。查看全部
-
对你学过的知识一定要再去有所研究,不要学了就算了。查看全部
举报
0/150
提交
取消