Skip to content

Challenge Manipulate JavaScript Objects

Quincy Larson edited this page Aug 20, 2016 · 1 revision

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);
Clone this wiki locally