Lodash _.isSet() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_ .isSet()方法用于查找给定值是否被归类为 Set 对象。如果给定值是一个集合,则返回 True。否则,它返回 false。
句法:
_.isSet(value)
参数:此方法接受如上所述和如下所述的单个参数:
- value:此参数保存要检查的值。
返回值:如果该值是一个集合,则此方法返回 true,否则返回 false。
示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Creating a array of size 2
var obj= new Array(2);
// Filling array with value 10
obj.fill(10);
// Use of _.isSet() method
console.log(_.isSet(obj));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isSet() method
console.log(_.isSet(new Set));
console.log(_.isSet(new WeakSet));
输出:
false
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isSet() method
console.log(_.isSet(new Set));
console.log(_.isSet(new WeakSet));
输出:
true
false
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。