Lodash _.isNil() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_ .isNil()方法用于检查值是否为空或未定义。如果该值为 null,则返回 true,否则返回 false。
句法:
_.isNil(value)
参数:此方法接受如上所述和如下所述的单个参数:
- value :此参数保存要检查的值。
返回值:如果值为空,则此方法返回 true,否则返回 false。
示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isNil()
// method
let gfg = _.isNil(null);
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isNil()
// method
let gfg = _.isNil(void 0);
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isNil()
// method
let gfg = _.isNil(NaN);
// Printing the output
console.log(gfg);
输出:
true
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isNil()
// method
let gfg = _.isNil(void 0);
// Printing the output
console.log(gfg);
输出:
true
示例 3:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isNil()
// method
let gfg = _.isNil(NaN);
// Printing the output
console.log(gfg);
输出:
false