js 一维数组转二维数组

2021-01-24 22:13

阅读:410

标签:func   class   tran   war   while   style   UNC   new   splice   

function arrTrans(num, arr) {
  const newArr = [];
  while(arr.length > 0) {
    newArr.push(arr.splice(0, num));
  }
  return newArr;
}

 

js 一维数组转二维数组

标签:func   class   tran   war   while   style   UNC   new   splice   

原文地址:https://www.cnblogs.com/dengsicode/p/12863532.html


评论


亲,登录后才可以留言!