Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 4: Mastering JavaScript Basics: Operators, Variable Scope, and Data Handling!
Instruction
delete
delete obj.x unbinds property x from object obj.
The delete keyword deletes a property from an object. It deletes both the value of the property and the property itself. After deletion, the property cannot be used before it is added back again. The delete operator is designed to be used on object properties. It has no effect on variables or functions.
new
new cl creates a new objec...