intersect()函數用於刪除主集合中給定集合中不存在的值。在JavaScript中,首先將數組轉換為一個集合,然後將該函數應用於該集合。
用法:
data.intersect('x')
參數:該函數接受如上所述和以下描述的單個參數:
- x:持有一個將與主集合相交的集合。
返回值:返回修改後的結果,或者您可以說相交的集合。
下麵的示例說明了collect.js中的intersect()函數。示例1:在此示例中,我們采用一個集合,然後使用intersect()函數采用一個新的集合,將其與值相交並返回修改後的集合。
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([1, 2, 3, 4, 5]);
const any = collection.intersect([1, 2, 3, 9]);
console.log(any.all());
輸出:
[ 1, 2, 3 ]
範例2:
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([9 , 8 , 7 , 6 , 5]);
new1 = collection.intersect([6 , 5 , 8 , 4]);
console.log(new1.all());
輸出:
[ 8, 6, 5 ]
相關用法
- PHP Ds\Set intersect()用法及代碼示例
- PHP Ds\Map intersect()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Collect.js | intersect() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。