代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>08_扩展运算符 spread operator intro</title>
</head>
<body>
<!--
rest剩余参数:将多个参数整合为一个数组
扩展运算符: 将可遍历对象的元素扩展为一个新的参数序列
-->
<script type="text/javascript">
// 数组合并
// es5
var fruit=["apply", "bananas", "pear"]
var newFruit=["orange", "mongo"]
// 新添加的元素会成为二维数组
// fruit.push(newFruit);
// console.log(fruit);// ["apply", "bananas", "pear", Array(2)]
// 需要使用apply解决
// fruit.push.apply(fruit,newFruit);
// console.log(fruit);// ["apply", "bananas", "pear", "orange", "mongo"]
// es6
// 使用rest剩余参数解决
fruit.push(...newFruit);
console.log(fruit);//["apply", "bananas", "pear", "orange", "mongo"]
// 数组复制(深拷贝)
// es5
const currentMembers5=[].concat(fruit)
// es6
const currentMembers6=[...fruit]
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。