Collect.js has() 方法
Collect.js 中的has() 方法用于检查集合中是否存在键。在JavaScript中,首先将数组转换为集合,然后将函数应用于集合。
语法:
data.has('key')
参数:
- Key :此参数保存一个新的操作值。
返回值:此方法返回一个布尔值 True 或 False。
下面的示例说明了 Collect.js 中的has()函数
示例 1 :在此示例中,我们获取一个集合,然后使用has()函数检查单个值。
Javascript
// Importing the collect.js module
const collect = require('collect.js');
const collection = collect({
name : 'GeeksforGeeks',
Field : 'Education',
Address : 'Noida',
});
console.log(collection.has('name'));
Javascript
// Importing the collect.js module
const collect = require('collect.js');
const collection = collect({
name : 'GeeksforGeeks',
Field : 'Education',
Address : 'Noida',
});
console.log(collection.has('name', 'Field', 'Address'));
输出:
true
示例 2 :在此示例中,我们获取一个集合,然后使用has()函数检查多个值。
Javascript
// Importing the collect.js module
const collect = require('collect.js');
const collection = collect({
name : 'GeeksforGeeks',
Field : 'Education',
Address : 'Noida',
});
console.log(collection.has('name', 'Field', 'Address'));
输出:
true
参考: https://collect.js.org/api/has.html