728x90

pop()

pop()은 배열의 마지막 요소를 제거.

제거한 요소를 리턴.

arr.pop()

return

배열에서 제거한 요소를 리턴.

 

pop()예제

const arr = ['apple', 'peach', 'grape']; 
const popArr = arr.pop(); 

console.log(popArr); // 'grape';
console.log(arr); // ['apple', 'peach'];
728x90

+ Recent posts