二维数组合并

白俊遥博客

<html>
<body>
<script type="text/javascript">
 let result=[]; 
let list= [
[[1,2],[3,4]],
    [[5,6], [8]],
    [[22,33],[99,55]]
];
for(let item of list){
result.push(...item);
}
console.log(result)
</script>
</body>
</html>

白俊遥博客



白俊遥博客
请先登录后发表评论
  • 最新评论
  • 总共0条评论