spread演算-react-


展開演算により配列を容易に生成できる.


アレイのコピー
habits: [
        {key: 1, name: "Reading", count: 0},
        {key: 2, name: "Running", count: 0},
        {key: 3, name: "Coding", count: 0}
    ]
    
const habits2 = [...this.state.habits]; -> 복사본
シナリオに追加して新しいシナリオを作成
const habits3 = [...this.state.habits, {key: Date.now(), name: name, count:0}];
기존의 habits 배열을 그대로 가져오고 거기에 새롭게 추가하여 만든다