84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
最近在一些代码里看到 不少 =>我开始以为是等于大于,后面发现好像是另外一回事,但是查了又没查到,想了下可能是 ECMAscript6的新特性,但是又没搜到。请问大家了解吗?
欢迎选择我的课程,让我们一起见证您的进步~~
箭头函数。也就是匿名函数的简写。
箭头函数的使用与介绍
lambda 表达式也就是匿名函数
箭头函数。https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Functions/Arrow_functions
Arrow function
ES6匿名函数的书写,也叫箭头函数比如:
setTimeout(function(){ console.log(11111); },1000);
也可以写成:
setTimeout(()=>{ console.log(11111); },1000);
箭头函数。也就是匿名函数的简写。
lambda 表达式也就是匿名函数
箭头函数。
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Functions/Arrow_functions
Arrow function
ES6匿名函数的书写,也叫箭头函数
比如:
也可以写成: