The new at Method

Juyeon Lee·2022년 2월 21일
0
const arr = [23, 11, 64];
console.log(arr[0]);
console.log(arr.at[0]);

//getting last array element
console.log(arr[arr.length - 1]);
console.log(arr.slice(-1)[0]);
console.log(arr.at(-1));

console.log('juyeon'.at(0));
console.log('juyeon'.at(-1));

새로운 method로 at Method라는게 추가되었나보다..
위의 예시처럼 간편하게 이걸 이용할 수 있다.
array에서 어디에 있는지 at 써서 지정하면 됨..

0개의 댓글