forget()函数的名称建议使用其键从集合中忘记/删除某项。在JavaScript中,首先将数组转换为一个集合,然后将该函数应用于该集合。语法:
data.forget('key')
参数:该函数接受如上所述和以下描述的单个参数:
- Key:此参数保存定义该键值的键名。
返回值:返回集合,但提及的键值除外。
下面的示例说明了collect.js中的forget()函数。示例1:在此示例中,我们获取一个集合,然后使用forget()函数返回该集合而没有忘记的关键元素。
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
name:'Jhon',
Roll:7,
});
collection.forget('Roll');
console.log(collection.all());
输出:
{ name:'Jhon' }
范例2:我们在上面与上面的示例相同的操作。
Python3
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect({
Address:'253 Steet , California',
pincode:'0987'
});
collection.forget('Address');
console.log(collection.all());
输出:
{ pincode:'0987' }
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- p5.js removeElements()用法及代码示例
- PHP Imagick adaptiveSharpenImage()用法及代码示例
- PHP XMLWriter endDtdEntity()用法及代码示例
注:本文由纯净天空筛选整理自akhilsharma870大神的英文原创作品 Collect.js | forget() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。