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" }const names = {
father: "Johnny",
brother: "Billy",
sister: "Sandy"
}
delete names.father
// { brother: "Billy", sister: "Sandy" }
delete names["father"]
// { brother: "Billy", sister: "Sandy" }
Also in JavaScript:
- crypto node
- square root javascript
- javascript Sum of a sequence
- addclass javascript
- add all elements in array javascript
- backbone js event listener
- javascript read input from terminal
- string immutable javascript
- definicion de un componente en angular
- javascript e.keycode deprecated
- javascript filter
- javascript getcontext
- three js clock
- js object to c# object
- hoe lang is 50000 uur
- css and js on flask
- how to hash password in node js
- tranary operator in js
- ion button transparent
- import a script to my react componetn
- use history in react router
- jquery on element change
- check if not checked vanila js
- uppy init