“=>”的含义是什么在JavaScript中? 例如,它在这里使用。 https://github.com/ebidel/polymer-gmail/blob/master/scripts/app.js
答案 0 :(得分:1)
=>
名为箭头功能
箭头函数表达式(又称胖箭头函数)有一个 与函数表达式和词法绑定相比,语法更短 这个值(不绑定它自己的this,arguments,super或者 new.target)。箭头功能始终是匿名的。
有关详细信息:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions