Lodash _.isUndefined() 方法
_.isUndefined()方法用于查找给定值是否未定义。如果给定值未定义,则返回True 。否则,它返回false 。
句法:
_.isUndefined(value)
参数:此方法接受一个如上所述和如下所述的参数。
value:此参数保存要检查的值。
返回值:如果值未定义,此方法返回true ,否则返回false 。
示例 1:在以下示例中,使用const _ = require(“lodash”)将lodash库导入文件。
Javascript
// The lodash library is included
const _ = require("lodash");
// Use of _.isUndefined() method
console.log(_.isUndefined(null));
console.log(_.isUndefined(void 0));
console.log(_.isUndefined('gfg'));
Javascript
// The lodash library is included
const _ = require("lodash");
// Use of _.isUndefined() method
console.log(_.isUndefined(window.missingVariable));
console.log(_.isUndefined(10));
console.log(_.isUndefined(undefined));
输出:
false
true
false
示例 2:
Javascript
// The lodash library is included
const _ = require("lodash");
// Use of _.isUndefined() method
console.log(_.isUndefined(window.missingVariable));
console.log(_.isUndefined(10));
console.log(_.isUndefined(undefined));
输出:
true
false
true