ES6学习笔记--default,rest
Posted 沐浴点阳光
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6学习笔记--default,rest相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章