Challenge Manipulate JavaScript Objects - ashish9342/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);
⚠️ **GitHub.com Fallback** ⚠️