美文网首页
js将数组拆成一组一组

js将数组拆成一组一组

作者: pomelo_西 | 来源:发表于2019-07-12 13:40 被阅读0次

    写一个common的方法:

    function splitArray(arr, len) {
      let arrLength = arr.length
      let result = []
      for (let i = 0; i < arrLength; i += len) {
        result.push(arr.slice(i, i + len))
      }
      return result
    }
    

    用法:

    let restaurants = [1, 2, 3, 4, 5, ,6 ,7, 8, 9]
    splitArray(restaurants, 5)
    //输出结果: [[1, 2, 3, 4, 5], [6, 7, 8, 9]]
    

    相关文章

      网友评论

          本文标题:js将数组拆成一组一组

          本文链接:https://www.haomeiwen.com/subject/mouekctx.html