Array method

CCY·2020년 6월 12일
0

Javascript 모음

목록 보기
1/11
post-thumbnail

concat vs push

The push() adds elements to the end of an array and returns the new length of the array. ... The concat() method is used to merge arrays. Concat does not change the existing arrays, but instead returns a new array.

배열을 mutate(변질) 하면 안된다. 그래서 변질되지 않는 방법을 사용해야 한다

  • push 는 배열의 뒤로 추가되어 배열이 변질됨.
  • concat은 새로운 배열을 만듬

배열 Methods !! [ ]

같은이유로 pop,shift,slice 등등은 제거 배열에서 제거 하는것들인데 Mutable 이다.

그래서 우리는 filter,includes등을 사용하는게 좋다.

profile
✍️ 기록을 습관화 하자 ✍️ 나는 할 수 있다, 나는 개발자가 될거다 💪🙌😎

0개의 댓글