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

151
Vistas
How to create a new index array in javascript?

I have an array toolList

toolList = [{
      tbl_gaveta_NUMERO: '3',
      tbl_gaveta_DESCRIPCION: 'GAVETA CLORO',
      tbl_herramienta_FECHA: '2021-11-02',
      tbl_herramienta_NOMBRE: 'EXACTO',
      tbl_herramienta_CODIGO: '354']}

How to create another index to add a new variable called cantidad? As an example, the cantidad variable to be assigned to cantidad index.

toolList = [{
      tbl_gaveta_NUMERO: '3',
      tbl_gaveta_DESCRIPCION: 'GAVETA CLORO',
      tbl_herramienta_FECHA: '2021-11-02',
      tbl_herramienta_NOMBRE: 'EXACTO',
      tbl_herramienta_CODIGO: '354',
      cantidad: cantidad]}
about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

Adding a new item with the index 'cantidad' and value of the variable cantidad to your associative array using JavaScript method push():

let cantidad = 'test';

toolList.push({'cantidad': cantidad});
about 4 years ago · Juan Pablo Isaza Denunciar

0

let cantidad
toolList[0]["cantidad"] = cantidad
about 4 years ago · Juan Pablo Isaza Denunciar

0

When the variable name matches key name of the object, you can use ES6 syntax like that:

const cantidad = 'cantidad'
toolList.push({ cantidad })

MDN docs of the push method

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