Company logo
  • Empleos
  • Bootcamp
  • Acerca de nosotros
  • Para profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
    • Bootcamp
  • Para empresas
    • Inicio
    • Nuestro proceso
    • Planes
    • Pruebas
    • Nómina
    • Blog
    • Calculadora

0

74
Vistas
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.

7 months ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

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);

7 months ago · Juan Pablo Isaza Denunciar

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);
7 months ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar empleo Planes Nuestro proceso Comercial
Legal
Términos y condiciones Política de privacidad
© 2023 PeakU Inc. All Rights Reserved.