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 do I use an online JavaScript compiler with Lodash?
- How do I use Lodash to zip two JavaScript arrays together?
- How do I use yarn to install and use lodash in a JavaScript project?
- How can I use Lodash's xor function to manipulate JavaScript objects?
- How do I use Lodash to set values in JavaScript?
- How can I use Lodash to convert a JavaScript object to a query string?
- How can I use Lodash to manipulate JavaScript objects online?
- How can I use Lodash to find the unique key of a JavaScript object?
- How do I use Lodash in a JavaScript playground?
- How can I compare the usage of lodash's foreach to the native JavaScript foreach loop?
See more codes...