$.object.remove
Remove method of array helpers
This remove
helper is for remove object properties by its key or its name. Actually you can use delete
statement to remove certain property from the object, but the problem is when we want to remove multiple properties from our object, that is why we provide this remove
helper.
Or you may want to remove object properties by its value, you can do that by using another helper which is removeBy
helper, this will remove all the properties that have similar values.
Last updated