Reflect.deleteProperty() JavaScript

The JavaScript Reflect.deleteProperty() method deletes a property of an object. Syntax: Reflect.deleteProperty(target, propertyKey)   Parameters: target: It represents the object whose property have to be deleted. propertyKey: It represents the name of the property to be deleted. Return: It returns true if the specified property is successfully deleted otherwise, it returns false. Example 1: <!DOCTYPE … Read more