码迷,mamicode.com
首页 > 其他好文 > 详细

ES6中的箭头函数

时间:2016-12-02 01:34:31      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:ret   str   es6   bsp   span   nbsp   语句   function   括号   

一:箭头函数的格式

  a:一种为只有一条语句,可以省略{}和return。

    如:x => x * x;

    相当于: function(x) {

          return x * x;

        }

  b:一种为多条语句,不可以省略{}和return。

    如:x => {

        if (x > 0) {

          return 1;

        }

        return 2;

      }

    相当于:function(x){

          if (x > 0) {

            return 1;

          }

          return 2;

        }

  注:a.当无参数时或有多个参数时,需要用括号()括起来。

      如:(x, y)=> x + y;

    b.当

 

ES6中的箭头函数

标签:ret   str   es6   bsp   span   nbsp   语句   function   括号   

原文地址:http://www.cnblogs.com/yangrenmu/p/6123663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!