Skip to content

Challenge Manipulate JavaScript Objects

Rafael J. Rodriguez edited this page May 14, 2016 · 2 revisions

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