es6三点运算符
Posted essaycode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es6三点运算符相关的知识,希望对你有一定的参考价值。
es6三点运算符
<script type="text/javascript"> function func(a,b,...params){ console.log(params); params.forEach(function(item,index){ console.log(item,index); }) } func(2,4,5,6); let arr1=[2,3]; let arr2=[1,...arr1,4]; console.log(arr2); console.log(...arr1); </script>
以上是关于es6三点运算符的主要内容,如果未能解决你的问题,请参考以下文章