Lodash _.isWeakSet() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.isWeakSet()方法用于查找给定值是否为弱集对象。如果给定值是弱集对象,则返回 true。否则,它返回 false。
句法:
_.isWeakSet( value )
参数:此方法接受如上所述和如下所述的单个参数:
- value:此参数保存要检查的值。
返回值:如果 value 是弱集,此方法返回 true,否则返回 false。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isWeakSet() method
console.log(_.isWeakSet(new Set));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isWeakSet() method
console.log(_.isWeakSet(new WeakSet));
输出:
false
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.isWeakSet() method
console.log(_.isWeakSet(new WeakSet));
输出:
true