Array.prototype.shift() Posted on 2022-05-04 Edited on 2023-07-31 In Web , TIL , 2022.05 Array.prototype.shift() shift 메서드는 원본 배열에서 첫 번째 요소를 제거하고 제거한 요소를 반환한다 원본 배열이 빈 배열이면 undefined를 반환한다 원본 배열이 변경 된다 12345678const arr = [1,2]// 원본 배열에서 첫 번째 요소를 제거하고 제거한 요소를 반환let result = arr.shift()console.log(result) // 1// 원본 배열 변경됨console.log(arr) // [2]