Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

128
Vistas
How to merge two objects that are generated by a mapping process?

This is what my original array looks like

[                                                                                             
  {
    _id: new ObjectId("12934193c51a231b0165425a"),
    userid: '62921df1c14a2eea0efa9399',
    timestamp: 1653817696599,
  },
  {
    _id: new ObjectId("11934193c51a231b0165425a"),
    userid: '62921df1c14a2eea0efa9399',
    timestamp: 1653817696600,
  }
]

I use this code to convert the timestamp

const newNotifications = notifications.map((element, index) => {
  return {
    element: element,
    new_timestamp: new Date(element.timestamp),
  };
});

And this is the result I have

[
  {
    "element": {
      "_id": "12934193c51a231b0165425a",
      "userid": "62921df1c14a2eea0efa9399",
      "timestamp": 1653817696599,
    },
    "timestamp": "2022-05-29T09:48:16.599Z",
  },
]

I try to make it look like this

[                                                                                             
  {
    _id: new ObjectId("12934193c51a231b0165425a"),
    userid: '62921df1c14a2eea0efa9399',
    timestamp: 1653817696599,
    new_timestamp: '2022-05-29T09:48:16.599Z',
  },
  {
    _id: new ObjectId("11934193c51a231b0165425a"),
    userid: '62921df1c14a2eea0efa9399',
    timestamp: 1653817696600,
    new_timestamp: '2022-05-29T09:48:16.599Z',
  },
]

I would like the timestamp to be part of each newly created object and remove the element property generated by the current mapping.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can bind the new_timestamp into the existing object nd then return the whole object :

const notifications = [                            
  {
    _id: "12934193c51a231b0165425a",
    userid: '62921df1c14a2eea0efa9399',
    timestamp: 1653817696599,
  },
  {
    _id: "11934193c51a231b0165425a",
    userid: '62921df1c14a2eea0efa9399',
    timestamp: 1653817696600,
  }
];

const newNotifications = notifications.map((element) => {
    element['new_timestamp'] = new Date(element.timestamp).toString()
  return element;
});

console.log(newNotifications);

about 4 years 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 vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda