ES6
wudiwushen
这个作者很懒,什么都没留下…
展开
-
ES6箭头函数(一)-入门语法
简单语法//相当于:(参数1, 参数2, …, 参数N) =>{ return 表达式; }(argument1, argument2, ... argumentN) => { // function body}案例:var add = (a,b) => { var num1 = a+b; var num2 = a-b; retur...原创 2019-08-15 10:11:34 · 298 阅读 · 0 评论 -
ES6箭头函数(二)-this绑定
箭头函数,除了帮助我们简写之外,最大的好处就是this不再被绑定在调用者,而是继承与环境对象,在哪个环境定义,this就是指的哪个环境对象。在编写构造函数或者函数时,this的指向经常会变化,导致this.属性无法在各个函数体面使用案例代码: function Counter() { console.log('我是构造体'+this); this...原创 2019-08-15 10:26:37 · 763 阅读 · 0 评论 -
ES6箭头函数(三)-应用场景
直接作为事件handlerdocument.addEventListener('click', ev => { console.log(ev)})作为数组排序回调var arr = [1, 9 , 2, 4, 3, 8].sort((a, b) => { if (a - b > 0 ) { return 1 } else ...原创 2019-08-15 10:32:20 · 433 阅读 · 0 评论