📅  最后修改于: 2023-12-03 15:28:27.465000             🧑  作者: Mango
在JavaScript中,可以通过索引数组获取数组的值。索引数组是一个数字序列,从0开始,依次递增。每个数字对应着数组中的一个元素。
array[index]
其中,array
是要获取值的数组,index
是要获取值的索引。
const fruits = ["apple", "banana", "orange"];
const firstFruit = fruits[0];
console.log(firstFruit); // "apple"
在上面的例子中,我们创建了一个名为fruits
的数组,并通过fruits[0]
获取了第一个元素的值(即"apple")。
const fruits = ["apple", "banana", "orange"];
fruits[1] = "pear";
console.log(fruits); // ["apple", "pear", "orange"]
在上面的例子中,我们修改了fruits
数组中第二个元素(即索引为1的元素)的值,将其从"banana"改为"pear"。
const fruits = ["apple", "banana", "orange"];
const multipleFruits = fruits.slice(0, 2);
console.log(multipleFruits); // ["apple", "banana"]
在上面的例子中,我们使用数组的slice()
方法获取了前两个元素(即索引为0和1的元素)的值,返回了一个包含这两个元素的新数组。
undefined
。fruits[-1]
可以用来获取最后一个元素的值。