const cat = {
species : "포유류",
title : "고양이"
}
console.log(cat)
console.log(cat.species)
console.log(cat["title"])
=> 결과값
->{species: '포유류', title: '고양이'}
->포유류
->고양이
const jerry = {
...cat,
name : "제리",
age : 3,
favourite : ["밥", "간식", "집사의 무릎"]
}
console.log(jerry)
console.log(jerry.favourite)
console.log(...jerry.favourite)
=>결과값
->{species: '포유류', title: '고양이', name: '제리', age: 3, favourite: Array(3)}
->['밥', '간식', '집사의 무릎']
->밥 간식 집사의 무릎