> For the complete documentation index, see [llms.txt](https://docs.newbot.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.newbot.io/pre-built-function-for-the-widget/_-lodash.md).

# \_ (lodash)

You can use any lodash function that does not have a callback in parameter

```typescript
_.difference([2, 1], [2, 3])
```

But this function not works:

```typescript
 _.flip(); // not works because first parameter is a JS callback
```
