What does the ... do in this React (using JSX) code and what is it called?
...
Its called spread operator. For eg let hello={name: '',msg:''} let hello1={...hello} Now hello object properties is copied to hello1.