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 Lodash in a JavaScript playground?
- How can I remove a value from an array using JavaScript and Lodash?
- How do lodash and underscore differ in JavaScript?
- How can I use Lodash to create a unique array in JavaScript?
- How do lodash and JavaScript differ in terms of usage in software development?
- How do I use Lodash to truncate a string in JavaScript?
- How can I use Lodash's reject function in JavaScript?
- How can I use Lodash's xor function to manipulate JavaScript objects?
- How can I use Lodash's throttle function in JavaScript?
- How do I use Lodash in JavaScript?
See more codes...