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

237
Vistas
I am getting error push() is not a function while pushing element in array?

I am getting error push() is not a function while pushing element in >array? giving me error lik arry.push is not a function

 var abc=["get","get","get","get","get","get","get","get","get",];
    
     for(i=0;i<abc.length;i++){

    let a=abc[i].push("mate");
 
   console.log(abc);
    }
about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

When you do abc[i].push(), you're actually calling .push() on the string at index i, not the array. Strings do not have the function .push() which is where your error is coming from

Instead try the following:

abc.push("mate");
about 4 years ago · Juan Pablo Isaza Denunciar

0

To push elements in an array, simply use the Array.prototype.push method.

var abc = ["get", "get", "get", "get", "get", "get", "get", "get", "get"]

abc.push("mate")

Read more about how push works here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push

The origin point of your error is that, you are accessing each array elements which are strings and trying to use the push() method on those.

about 4 years ago · Juan Pablo Isaza Denunciar

0

You should delete the [i] in abc[i].push() because abc[i] is string, but the .push() method works for arrays. Therefore you should use abc.push() instead of abc[i].push().

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