• ES6的箭头函数


    ES6的箭头函数

      普通函数

    let f2 = function(a) {
        return a;
    }
    f1(1); //1

      箭头函数

    // 参数 => 函数体
    let f1 = v => v;
    f1(1); //1

    这两种写法都是输出1,相当于把function给省略了,再在括号后面加上=>

    let show1 = function () {
        console.log('show1');
    }
    let show2 = () => {
        console.log('show2');
    }
    show1(); // show1
    show2(); // show2

      箭头函数带参数

    let show1 = function (a, b) {
        console.log(a + b);
    }
    let show2 = (a, b) => {
        console.log(a + b);
    }
    show1(1, 2); // 3
    show2(3, 4); // 7

      看个例子

    // 普通写法
    let arr = [12, 13, 20, 18, 22, 99]; arr.sort(function (a, b) { return a - b; }); console.log(arr); // [12, 13, 18, 20, 22, 99]
    // 箭头函数写法
    let arr = [12, 13, 20, 18, 22, 99];
    arr.sort((a, b) => {
        return a - b;
    });
                
    console.log(arr); // [12, 13, 18, 20, 22, 99]

    箭头函数要点:只有一个参数,() 可以省略,只有一个return {} 可以省

    let show = function(a) {
        return a;
    }
    console.log(show(1)); // 1
                
    let show2 = a => a;
    console.log(show2(8)); // 8

      看个例子,函数体代码只有一个return(只有return 这一句代码),可以这样写

    let arr = [12, 13, 20, 18, 22, 99];
    arr.sort((a, b) => a - b);
    console.log(arr); //  [12, 13, 18, 20, 22, 99]
  • 相关阅读:
    网络流24题-运输问题
    ASP.NET API
    面向对象理解
    冒泡排序
    HTTP Header 缓存
    HTTP Header
    Flask学习笔记07之模板渲染
    Flask学习笔记06之@before_request请求之前执行
    Flask报错:AssertionError: View function mapping is overwriting an existing endpoint function: inner
    装饰器03之多个装饰器的执行顺序
  • 原文地址:https://www.cnblogs.com/yangWanSheng/p/11708666.html
Copyright © 2020-2023  润新知