javascript-lodashHow can I check if a variable is null or undefined using Lodash in JavaScript?
To check if a variable is null or undefined using Lodash in JavaScript, you can use the _.isNil() method. This method returns true if the given value is null or undefined.
Example code
const _ = require('lodash');
let a = null;
let b = undefined;
let c = 0;
console.log(_.isNil(a)); // true
console.log(_.isNil(b)); // true
console.log(_.isNil(c)); // false
Output example
true
true
false
The .isNil() method takes in one argument, the value to be tested. In the example above, the values of a
and b
are null and undefined respectively. The .isNil() method returns true for both of these values since they are both null or undefined. The value of c
is 0, so the _.isNil() method returns false.
Helpful links
More of Javascript Lodash
- How can I use Lodash to deep compare two arrays of objects in JavaScript?
- How do I use Lodash to zip two JavaScript arrays together?
- How do I use Lodash in a JavaScript playground?
- How do I use Lodash in JavaScript?
- How can I remove a value from an array using JavaScript and Lodash?
- How can I use lodash's `some()` method to achieve the same result as the JavaScript `some()` method?
- How can I use Lodash to create a unique array in JavaScript?
- How can I use Lodash's reduce function in JavaScript?
- How do I use yarn to install and use lodash in a JavaScript project?
- How can I use Lodash to split a string in JavaScript?
See more codes...