Paracetamol.js๐Ÿ’Š| #135: ์ž๋ฐ”์Šคํฌ๋ฆฝํŠธ ์ฝ”๋“œ ์„ค๋ช…

3264 ๋‹จ์–ด webdevprogrammingspanishjavascript

Explica el siguiente codigo JavaScript



๋‚œ์ด๋„: Bรกsico




const f = (arr) => {
  return arr.map((item) => {
    return {
      nombre: item.nombre.toUpperCase()
    }
  })
}
console.log(f([
  {
    id: 1,
    nombre: "Luis",
    edad: 20
  },
  {
    id:2,
    nombre:"Carlos",
    edad:26
  }
]))


A. ["LUIS", "CARLOS"]๋น„.

[
  {
    nombre: "luis",
  },
  {
    nombre:"carlos",
  }
]


์”จ.

[
  {
    nombre: "LUIS",
  },
  {
    nombre:"CARLOS",
  }
]


D. Ninguno de los anteriores.

Respuesta en el primer comentario.

์ข‹์€ ์›นํŽ˜์ด์ง€ ์ฆ๊ฒจ์ฐพ๊ธฐ