Concept Flow - Adding and removing properties
Start with object
Add property: obj.key = value
Check object properties
Remove property: delete obj.key
Check object properties again
End
We start with an object, add a property, check it, then remove the property and check again.