concat, filter, map, slice, 스프레드(전개) 연산자 ..., splice
//concat, filter, map, slice, 스프레드(전개) 연산자 ... console.log('1.====================>스프레드 연산자'); const a = [1, 2, 3]; const b = [...a]; b.push(4); //b의 데이터 변경 console.log(`a의 값은: ${a}`); console.log(`b의 값은: ${b}`); console.log('2.====================>추가하기'); const a2 = [1, 2, 3]; const b2 = a2.concat(4); console.log(`a2의 값은: ${a2}`); //1,2,3 console.log(`b2의 값은: ${b2}`); //1,2,3,4 const c2 = [...a..