JS

Objects in JavaScript - Deleting a property from a...

27.

How can you delete a property from an object in JavaScript?

By using the delete keyword

By setting the value of the property to null

By using the remove() method

By using the splice() method