ES6箭头函数进修笔记

语法

  1. 具有一个参数的简朴函数

    var single = a => a
    single('hello, world') // 'hello, world'
  2. 没有参数的须要用在箭头前加上小括号

    var log = () => {
        alert('no param')
    }
  3. 多个参数须要用到小括号,参数间逗号距离,比方两个数字相加

    var add = (a, b) => a + b
    add(3, 8) // 11
  4. 函数体多条语句须要用到大括号

    var add = (a, b) => {
        if (typeof a == 'number' && typeof b == 'number') {
            return a + b
        } else {
            return 0
        }
    }
  5. 返回对象时须要用小括号包起来,因为大括号被占用解释为代码块了

    var getHash = arr => {
        // ...
        return ({
            name: 'Jack',
            age: 33
        })
    }
  6. 直接作为事宜handler

    document.addEventListener('click', ev => {
        console.log(ev)
    })
  7. 作为数组排序回调

    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]

特征

  1. this:用function天生的函数会定义一个本身的this,而箭头函数没有本身的this,而是会和上一层的作用域同享this。
  2. apply & call:因为箭头函数已绑定了this的值,纵然运用apply或许call也不能只能起到传参数的作用,并不能强行转变箭头函数里的this。
  3. arguments:一般函数里arguments代表了调用时传入的参数,然则箭头函数不然,箭头函数会把arguments当做一个一般的变量,顺着作用域链由内而外埠查询。
  4. 不能被new:箭头函数不能与new关键字一同运用,会报错。
  5. typeof运算符和一般的function一样:

    var func = a => a
    console.log(typeof func); // "function"
  6. instanceof也返回true,表明也是Function的实例:

    console.log(func instanceof Function); // true
    原文作者:Gideon
    原文地址: https://segmentfault.com/a/1190000005636588
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞