访问数组元素中的前一个元素
acces to previous element in element of arrays
我用一个例子来解释我的问题:
myArray=[10,15,42,74,65,2,7,9]
所以,我如何访问所有元素,例如元素“65”之前的元素:
newArray=[10,15,42,74]
您可以使用 Array.slice(start, length)
to get just part of your original array, and Array.indexOf()
获取数字 65 的索引。
let array = [10, 15, 42, 74, 65, 2, 7, 9]
// 0, because you want to start on the first index (10)
let newArray = array.slice(0, array.indexOf(65))
我用一个例子来解释我的问题:
myArray=[10,15,42,74,65,2,7,9]
所以,我如何访问所有元素,例如元素“65”之前的元素:
newArray=[10,15,42,74]
您可以使用 Array.slice(start, length)
to get just part of your original array, and Array.indexOf()
获取数字 65 的索引。
let array = [10, 15, 42, 74, 65, 2, 7, 9]
// 0, because you want to start on the first index (10)
let newArray = array.slice(0, array.indexOf(65))