JS Object Delete Value By Key

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