const a = [1,2,3]; a.concat([4,5,6]); console.log(a) // [1,2,3]
concat은 immutable하기 때문에 concat한 값을 변수에 담아줘야 한다.
const b = a.concat([4,5,6]) console.log(b) // [1,2,3,4,5,6]
혹시 a를 const로 선언해서 immutable 한 건 아닐까요??
혹시 a를 const로 선언해서 immutable 한 건 아닐까요??