배열 메서드 - push, pop, unshift, shift
배열 내 요소들을 관리하는 메서드에 대해 알아보겠습니다.
array.push
push
메서드는 배열의 마지막에 새로운 항목을 추가합니다. 여러 장의 카드에서 제일 위에 카드를 추가하는 것과 같습니다.
예시:
push 메서드 예시
const fruits = ['apple', 'banana'];
fruits.push('cherry');
console.log(fruits); // ["apple", "banana", "cherry"] 출력