how to delete property of an object code example
Example 1: Delete Properties from a JavaScript Object
var ourDog = {
"name": "Camper",
"legs": 4,
"tails": 1,
"friends": ["everything!"],
"bark": "bow-wow"
};
delete ourDog.bark;
Example 2: how to remove property of object in javascript without delete
const names = {
father: "Johnny",
brother: "Billy",
sister: "Sandy"
}
const newNames = Object.keys(names).reduce((object, key) => {
if (key !== "father") {
object[key] = names[key]
}
return object
}, {})
// { brother: "Billy", sister: "Sandy" }