Skip to content

Latest commit

 

History

History

at

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

介绍

at() 方法用以返回索引到的项目,需传整数参,正负均可。为负数,则从末尾倒数。若索引不到,则返回 undefined

at() 方法为 ES2022 新增,MDN 参考

示例

const nums = [1, 2, 3, 4, 5]

nums.at(1)
// 输出 2

nums.at(-1)
// 输出 5