咏竹莉
where there is a will,there is a way

at() 方法接收一个整数值并返回该索引的项目,允许正数和负数,正数是从头开始索引,负数是丛尾开始索引

找不到就返回undefined

1. const array1 = [5,12,8,130,44];

console.log(array1.at(2));     // 8     索引从0开始
console.log(array1.at(-2));   // 130  索引从后面-1开始
console.log(array1.at(7));     // undefined 

  

 

posted on 2023-11-07 09:43  咏竹莉  阅读(83)  评论(0编辑  收藏  举报