这个at()
方法从数组返回一个索引元素。
获取水果的第三个元素:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
let index = 2;
let fruit = fruits.at(index);
亲自试一试 »
获取水果的第三个元素:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
let index = 2;
let fruit = fruits[2];
亲自试一试 »
下面有更多示例。
这个at()
方法返回相同的[]
。
array.at(
index)
Parameter | Description |
index | Optional. The index (position) of the array element to be returned. Default is 0. -1 returns the last element. |
类型 | 描述 |
元素 | 数组中给定位置(索引)的元素。 |
JavaScript 数组at()
自 2022 年 3 月起所有浏览器均支持:
Chrome 66 | Edge 79 | Firefox 61 | Safari 12 | Opera 50 |
Jul 2021 | Jul 2021 | Jul 2021 | Mar 2022 | Aug 2021 |
获取水果的第一个元素:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
let fruit = fruits.at();
亲自试一试 »
获取水果的最后一个元素:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
let fruit = fruits.at(-1);
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!