-
模块化,变量封闭查看全部
-
实现链式调用: function addClass(){} addClass.prototype.addClass = function(className){ console.log("class: " + className + " add"); debugger return this; //返回addClass实例 } var aa = new addClass(); aa.addClass("a").addClass("b").addClass("c");查看全部
-
遇到过这种情况~用数据解决可以?查看全部
-
void还真是第一次遇见查看全部
-
if(!Object.create){ Object.create = function(proto){ function F(){}; F.prototype = proto; return new F; }; }查看全部
-
实现继承的方式: 1、Student.prototype = new Person(); 2、Student.prototype = Object.create(Person.prototype); 推荐方法(ES5)查看全部
-
原始表达式,初始化表达式。查看全部
-
Object.prototype.toString 算是一种判定方法查看全部
-
参考!!查看全部
-
instanceof 是基于原型链来判断的。查看全部
-
typeof function //"function" typeof(underfined) //"underfined" typeof NaN //"number"查看全部
-
number,string,boolean都有对应的包装类型查看全部
-
Student.prototype = Object.create(Person.prototype); Student.prototype.constructor = Student;查看全部
-
Student.prototype = Object.create(Person.prototype); Student.prototype.constructor = Student;查看全部
-
变量初始化,变量声明查看全部
举报
0/150
提交
取消