What do these three dots in React do?

前端 未结 29 2620
不思量自难忘°
不思量自难忘° 2020-11-21 23:53

What does the ... do in this React (using JSX) code and what is it called?



        
29条回答
  •  醉酒成梦
    2020-11-22 00:37

    const Profile =  {
              firstName: "kazi",
              lastName: "ahsan"
       }
    
    const ProfileUpdate =  {
              firstName: "kazi",
              lastName: "ahsan"
     }
    
    
    const newProfile = {...Profile, ...ProfileUpdate}
    

    Hope this helps someone.

提交回复
热议问题