Challenge Manipulate JavaScript Objects - thelastmile/FreeCodeCamp GitHub Wiki
Challenge Manipulate JavaScript Objects
We can add properties to objects like this:
myObject.myProperty = "myValue";
We can also delete them like this:
delete(myObject.myProperty);