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

250
Vistas
how to find length of an array in javascript

I am working with firebase for the first time. For that I am using Firestore. For getting all the messages I use Firebase built in method querySnapshot; Here i am getting all the rows as an object, where I declare a global variable as an array and try to push each and every object into that array. All was perfect. I got the array with all the messages as I want. But I want to get the length of an array. And I dont know every time I got 0 as an output where It have two rows.Lets Look at the Image for more better understanding enter image description here

Please help me solve this..

enter image description here Here is the utput i get

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

0

I suppose showMessages() called earlier than you push anything to user_messages array in onSnapshot callback.

about 4 years ago · Juan Pablo Isaza Denunciar

0

onSnapshot lets you listen for snapshots. That means that you cannot guarantee that your handler would have been called even once before showMessages is invoked.

You could reorder your control flow like this:

// ...

user_chats.onSnapshot((querySnapshot) => {
    querySnapshot.forEach(doc => {
        user_messages.push(doc.data());
    });
    showMessages();
});

// ...
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