Reading-Notes

Class 03 Summary :

lists & keys:


Spread Operator :

const array2=[‘m’,’n’,’o’]

const array3=[…array1, …array2]

array3 —> [‘a’,’b’,’c’,’m’,’n’,’o’]



let studentStudy ={ study:’Engineering’, place:’LTUC’ };

let studentInfo = { …student, …studentStudy };


inside the personal object.

this.props.increment (this.props.name);


Sources:

source1

source2

source3