语法
具有一个参数的简朴函数
var single = a => a single('hello, world') // 'hello, world'
没有参数的须要用在箭头前加上小括号
var log = () => { alert('no param') }
多个参数须要用到小括号,参数间逗号距离,比方两个数字相加
var add = (a, b) => a + b add(3, 8) // 11
函数体多条语句须要用到大括号
var add = (a, b) => { if (typeof a == 'number' && typeof b == 'number') { return a + b } else { return 0 } }
返回对象时须要用小括号包起来,因为大括号被占用解释为代码块了
var getHash = arr => { // ... return ({ name: 'Jack', age: 33 }) }
直接作为事宜handler
document.addEventListener('click', ev => { console.log(ev) })
作为数组排序回调
var arr = [1, 9 , 2, 4, 3, 8].sort((a, b) => { if (a - b > 0 ) { return 1 } else { return -1 } }) arr // [1, 2, 3, 4, 8, 9]
特征
- this:用function天生的函数会定义一个本身的this,而箭头函数没有本身的this,而是会和上一层的作用域同享this。
- apply & call:因为箭头函数已绑定了this的值,纵然运用apply或许call也不能只能起到传参数的作用,并不能强行转变箭头函数里的this。
- arguments:一般函数里arguments代表了调用时传入的参数,然则箭头函数不然,箭头函数会把arguments当做一个一般的变量,顺着作用域链由内而外埠查询。
- 不能被new:箭头函数不能与new关键字一同运用,会报错。
typeof运算符和一般的function一样:
var func = a => a console.log(typeof func); // "function"
instanceof也返回true,表明也是Function的实例:
console.log(func instanceof Function); // true