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