JS objeto Excluir valor por chave

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