July 17, 2020
function home(){
const list = ['apple', 'orange', 'watermelon'];
list.push('banana');
console.log(list);
// const는 재선언은 불가능하지만, 배열이나 객체로 선언된 값을 변경하는 것은 가능하다.
};
home(); // ["apple", "orange", "watermelon", "banana"]
const list = ['apple', 'orange', 'watermelon'];
// list2 = [].concat(list, 'banana');
list2 = list.concat('banana');
console.log(list, list2);
// list : ["apple", "orange", "watermelon"]
// list2 ["apple", "orange", "watermelon", "banana"]
// destructuring 이후, concat보다는..
const obj = {id : 0, name : 'baby'};
const arr = [1,2,3];
const newObj = {...obj};
const newArr = [...arr];
// 값은 동일하지만, 같은 값을 참조하고있지 않다.
console.log(obj === newObj) // false
console.log(arr === newArr) // false