tistory view
shift() 메소드 -
배열에서 첫 번째 요소를 제거하고, 제거된 요소를 반환.
이 메서드는 배열의 길이를 변하게 함.
const array1 = [1, 2, 3];
const firstElement = array1.shift();
console.log(array1);
//expected output: Array [2,3]
console.log(firstElement);
//expected output: 1
'Javascript' 카테고리의 다른 글
reverse() 메소드 (0) | 2022.02.07 |
---|---|
unshift() 메소드 (0) | 2022.02.07 |
sort() 메소드 (0) | 2022.02.07 |
push() 메소드 (0) | 2022.02.07 |
상수 _ const (0) | 2022.02.02 |
comment
© 2022 Jane Doe