[React] 배열 push

sunny·2021년 1월 23일
0

💠 React

목록 보기
9/15
post-thumbnail
post-custom-banner

react에서는 배열에 push 하지 않는다.

리액트는 state기준으로 바뀐게있으면 렌더링하기 때문에 push하면 바뀐게 있는지 없는지 알아차리기 어렵다.

이런식으로 해줄것.

const arr1 = []
const arr2 = [...arr1, 1];

const arr = [...전 배열 펼치기, 넣어줄 값];
profile
blog 👉🏻 https://kimnamsun.github.io/

0개의 댓글