Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

197
Views
Delete Objects in JavaScript. I'm a bit confused.I have a problem with removeName(person)

I'm a bit confused with JavaScript's delete operator.I am begginer in JS and I have a problem with removeName(person). Take the following piece of code:

let user = {};
user.name = "name";


export default function removeName (person){

  delete user.name;
  return new Object(person)


}

removeName(user);
console.log(user);

After this piece of code has been executed,I take as output {} but I want the below the function

removeName (person), accept the person object as a parameter, and modifies the person object by deleting the property name field. THE function will not return anything, it will modify the object directly.

I'm a bit confused because I think that i solve but I do not get the result I need.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

There are two big differences between the expectations you have described and your code:

  • you remove a property from user, which is the same object that you pass in this specific case, but if you passed something else, your current function would incorrectly remove user's name even if you intended to remove the name of another object
  • your function returns a value, while you stated that it's not your intention

let user = {};
user.name = "name";


function removeName (person){

  delete person.name;

}

removeName(user);
console.log(user);

about 4 years ago · Juan Pablo Isaza Report

0

The user and the person are the same object in the heap(they have the same reference/pointer). So if you would like to remove property only for person object in function you need to create a copy of this object and remove there. If you need a function not to return anything - just removing the person property - try this:

let user = {};
user.name = "name";


export default function removeName (person){
  let copy = Object.assign({}, person);
  delete copy.name;

}

removeName(user);
console.log(user);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!