Suggest an editImprove this articleRefine the answer for “What does skip() do?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)`skip()` skips the given number of documents in the query's result: for example, `db.users.find().skip(10)` skips the first 10 documents and returns everything after them. **Key point:** it's usually paired with `limit()` for pagination - `skip(10).limit(5)` skips 10 and shows the next 5 (e.g. page 3).Shown above the full answer for quick recall.Answer (EN)Image`skip()` skips the given number of documents in the query's result. ### Example: ```js db.users.find().skip(10) ``` This query skips the **first 10 documents** and returns everything after them. ### Where it's used: - in pagination, together with `limit()` ```js db.users.find().skip(10).limit(5) ``` - skip 10, show the next 5 (e.g. page 3) **Summary:** `skip()` lets you skip part of the results and start returning data from a specific point.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.