2022年6月22日
摘要: 考点: this 作用域 隐式声明提升 原型 符号优先级 function Foo() { getName = function() { console.log(1); } return this; } Foo.getName = function() {console.log(2)} Foo.pr 阅读全文
posted @ 2022-06-22 17:08 香香鲲 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 在JavaScript中符号的优先级一般从高到低排序为: 1、关于new带参和无参的符号优先级顺序: function fn () { return function(){ console.log(666); return [1,3,20] ; } } var f1=new fn; console. 阅读全文
posted @ 2022-06-22 15:44 香香鲲 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-06-22 11:02 香香鲲 阅读(36) 评论(0) 推荐(0) 编辑