📜  Lodash _.isNull() 方法

📅  最后修改于: 2022-05-13 01:56:38.622000             🧑  作者: Mango

Lodash _.isNull() 方法

Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.isNull()方法用于查找对象的值是否为空。如果值为 null,则返回 true,否则返回 false。

句法:

_.isNull(value)

参数:此方法接受如上所述和如下所述的单个参数:

  • value:此参数保存要检查的值。

返回值:如果值为null,则此方法返回true,否则返回false。

示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
     
// Use of _.isNull()  
// method 
let gfg = _.isNull(null);
         
// Printing the output  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
     
// Use of _.isNull()  
// method 
let gfg = _.isNull(void 0);
         
// Printing the output  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
     
// Use of _.isNull()  
// method 
let gfg = _.isNull(NaN);
         
// Printing the output  
console.log(gfg);


输出:

true

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
     
// Use of _.isNull()  
// method 
let gfg = _.isNull(void 0);
         
// Printing the output  
console.log(gfg);

输出:

false

示例 3:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
     
// Use of _.isNull()  
// method 
let gfg = _.isNull(NaN);
         
// Printing the output  
console.log(gfg);

输出:

false