javascript fastest way to delete object property code example
Example: 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" }