摘要: 283. Move Zeroes var moveZeroes = function(nums) { var num1=0,num2=1; while(num1!=num2){ nums.forEach(function(x,y){ if(x 0){ nums.splice(y,1); nums.p 阅读全文
posted @ 2016-08-02 18:05 天才老王1993 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 函数调用的几种方法 js 里函数调用有4种模式:方法调用、正常函数调用、构造器函数调用、apply/call 调用。同时,无论哪种函数调用除了你声明时定义的形参外,还会自动添加2个形参,分别是 this 和 arguments。这里你既然问 this,那么就只谈 this。this 的值,在上面4中 阅读全文
posted @ 2016-08-02 14:24 天才老王1993 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 说到prototype,就不得不先说下new的过程。 我们先看看这样一段代码: <script type="text/javascript"> var Person = function () { }; var p = new Person(); </script> <script type="te 阅读全文
posted @ 2016-08-02 11:59 天才老王1993 阅读(191) 评论(0) 推荐(0) 编辑