remove key from object typescript without delete code example

Example 1: 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" }

Example 2: how to remove property of object in javascript without delete

const names = {
  father: "Johnny",
  brother: "Billy",
  sister: "Sandy"
}

delete names.father
// { brother: "Billy", sister: "Sandy" }

delete names["father"]
// { brother: "Billy", sister: "Sandy" }