[ JavaScript ] - Array에 쓸 수 있는 유용한 함수 "push, pop, unshift, shift"
Array.prototype.push()
- mdn 정의
The push() method adds one or more elements to the end of an array and returns the new length of the array.
=> push()메서드는 배열의 끝에 한개이상의 element를 추가하며 새로운 길이의 배열을 리턴한다.
Array.prototype.pop()
- mdn정의
The pop() method removes the last element from an array and returns that element. This method changes the length of the array.
=> pop()메서드는 배열의 마지막 element를 제거하며 그 element를 리턴한다.
Array.prototype.unshift()
- mdn 정의
The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.
=> unshift()메서드는 배열의 첫번째에 한개 이상의 element를 추가하며 새로운 길이의 배열을 리턴한다.
Array.prototype.shift()
- mdn 정의
The shift() method removes the first element from an array and returns that removed element. This method changes the length of the array.
=> shift()메서드는 배열의 첫번째의 element를 제거하며 제거된 그 element를 리턴한다.
참고