Skip to content

Challenge Manipulate JavaScript Objects

SaintPeter edited this page · 1 revision
Clone this wiki locally

Manipulate JavaScript Objects

We can add properties to objects like this:

myObject.myProperty = "myValue";

We can also delete them like this:

delete(myObject.myProperty);

Something went wrong with that request. Please try again.