-
I have the following code:
Pretty simple. However, the console output is:
which does not look like an array, am I using that property correctly? |
Beta Was this translation helpful? Give feedback.
Answered by
kriszyp
Jun 7, 2022
Replies: 1 comment
-
I believe this really is an array. It is an empty array, and it just has a property attached that links back to the original iterator which has some internal properties (and that's the way Node.js prints it out). Are there entries in the db that you expect to show up in this array? |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
vedantroy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I believe this really is an array. It is an empty array, and it just has a property attached that links back to the original iterator which has some internal properties (and that's the way Node.js prints it out). Are there entries in the db that you expect to show up in this array?