> For the complete documentation index, see [llms.txt](https://fivesobes.gitbook.io/cherry3/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fivesobes.gitbook.io/cherry3/other-operators/filter-and-process-operators/usdskip.md).

# $skip

| Name                                                   | Usage Type                                    | Description                                                                                                                                                                                                            |
| ------------------------------------------------------ | --------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <mark style="background-color:green;">**$skip**</mark> | <mark style="color:orange;">**Number**</mark> | <mark style="background-color:yellow;">**$skip Operator is Used to Specify Skip in Array Response Return. For example, if we require 2 Writers, it will skip at least 2 pieces of data and return other data.**</mark> |

```javascript
/* Example Usage */
const model = ...Someone Model

(async () => {

await model.find({},{ $skip: 1 });
/*
[
{id:2, name: 'Jesse', surname: 'Clean', age: 5, classNumber: 7, achievements:["reading"]},
]
*/

})();

```
