JS Object Delete Value по ключу

// Example delete object value by key.
var key = "Cow";
delete thisIsObject[key]; 
Comfortable Corncrake