2024-07-22 14:05:30

자바스크립트에서 배열에 요소를 추가할 때 사용할 수 있는 메서드는 push() 입니다.

 

const fruits = ['banana', 'apple'];
fruits.push('strawberry');
console.log(fruits);

 

 

배열의 가장 맨 끝에 strawberry가 추가된 것을 확인하실 수 있습니다.

 

또한 참고로 push() 메서드는 배열의 끝에 하나 이상의 요소를 추가할 수도 있으며, 배열의 새로운 길이를 반환해줍니다. 

 

const fruits = ['banana', 'apple'];
const cnt = fruits.push('strawberry', 'peer');
console.log("배열의 길이: ", cnt);
console.log(fruits);

 

 

 

자바스크립트의 push() 메서드는 파이썬에서는 append() 메서드와 비슷한 역할을 하는 것 같군요.

 

참고자료

[1] https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/push