Hello, object
importance: 5
Write the code, one line for each action:
- Create an empty object
user. - Add the property
namewith the valueJohn. - Add the property
surnamewith the valueSmith. - Change the value of the
nametoPete. - Remove the property
namefrom the object.
let user = {};
user.name = "John";
user.surname = "Smith";
user.name = "Pete";
delete user.name;