Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

244
Views
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 answers
Answer question

0

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

about 4 years ago · Juan Pablo Isaza Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!