Files
ihrm/node_modules/collect.js/docs/api/whereNull.md
Nikhil Ravi Cybrosys e1794e7422 [UPDT]translations in the views (#4)
[UPDT]Translations in the views
[FIX]major bug fixes
2023-05-18 15:05:28 +05:30

24 lines
418 B
Markdown
Executable File

# `whereNull()`
The `whereNull` method filters items where the given key is null.
```js
const collection = collect([{
name: 'Mohamed Salah',
}, {
name: null,
}, {
name: 'Darwin Núñez',
}]);
const filtered = collection.whereNull();
filtered.all();
// [
// { name: null },
// ]
```
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/whereNull.js)