Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
9 lines (5 sloc) 188 Bytes

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.