运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Object</h1> <h2>The Object.assign() Method</h2> <p id="demo"></p> <script> // Create Target Object const person1 = { firstName: "John", lastName: "Doe", age: 50, eyeColor: "blue" }; // Create Source Object const person2 = {firstName: "Anne",lastName: "Smith"}; // Assign Source to Target Object.assign(person1, person2); // Display Target let text = Object.entries(person1); document.getElementById("demo").innerHTML = text; </script> </body> </html>