Login
Remember
Register
Ask a Question
What is the syntax of the skip() method?
0
votes
asked
Jan 7, 2023
in
MongoDB
by
sharadyadav1986
What is the syntax of the skip() method?
mongodb
skip-method
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 7, 2023
by
sharadyadav1986
skip() method syntax is:
db.COLLECTION_NAME.find().limit(NUMBER).skip(NUMBER)
...