📜  数组映射限制javascript代码示例

📅  最后修改于: 2022-03-11 15:02:49.398000             🧑  作者: Mango

代码示例1
let array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

var arrayMap = array
  .slice(0, 4) //this remove bettwen array elements
  // or uou can use .slice(1) it will remove everything that is smaller than the array element

  .map((x) => array[x])
  .join(", ")

console.log(arrayMap) //will return 2, 3, 4, 5

// i hope it helped