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

ES6学习笔记--default,rest

时间:2017-05-27 19:12:10      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:efault   默认值   传参   als   这一   type   添加   types   调用   

default 意思是默认值。大家可以看下面的例子,调用animal()方法时忘记了传参数,传统的做法就是加上这一句type= type || ‘cat‘ 来指定默认值。

function animal(type){
    type = type || ‘cat‘
    console.log(type)
}
animal() //cat

而ES6S则可以直接给形参添加默认值,如:

function animal(type = ‘cat‘){
    console.log(type)
}
animal() // cat

rest

function animals(...types){
    console.log(types);
}
animals(‘cat‘,‘dog‘,‘fish‘) //["cat","dog","fish"]

如果不用ES6的话,则要使用ES5的arguments

ES6学习笔记--default,rest

标签:efault   默认值   传参   als   这一   type   添加   types   调用   

原文地址:http://www.cnblogs.com/garfieldzhong/p/6913854.html

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