摘要:
考点: this 作用域 隐式声明提升 原型 符号优先级 function Foo() { getName = function() { console.log(1); } return this; } Foo.getName = function() {console.log(2)} Foo.pr 阅读全文
摘要:
在JavaScript中符号的优先级一般从高到低排序为: 1、关于new带参和无参的符号优先级顺序: function fn () { return function(){ console.log(666); return [1,3,20] ; } } var f1=new fn; console. 阅读全文
摘要:
1、要求 :打印 0 1 2 var buttons = [{name: 'b1'}, {name: 'b2'}, {name: 'b3'}]; function bind() { for (var i = 0; i < buttons.length; i++) { buttons[i].oncli 阅读全文