delete object by key javascript code example

Example 1: javascript delete key from object

let person = {
  firstname: 'John',
  lastname: 'Doe'
}

console.log(person.firstname);
// expected output: "John"

delete person.firstname;

console.log(person.firstname);
// expected output: undefined

Example 2: js remove key from object

// Example 1
var key = "Cow";
delete thisIsObject[key]; 

// Example 2
delete thisIsObject["Cow"];

// Example 3
delete thisIsObject.Cow;

Example 3: javascript remove function from object

var obj = {
  func: function(a, b) {
    return a + b;
  }
};
delete obj.func;
obj.func(); // Uncaught TypeError: obj.func is not a function