Collect.js是用於處理數組和對象的流暢,便捷的包裝器。首先將JavaScript數組轉換為一個集合,然後將該函數應用於該集合。
crossJoin()方法將集合與數組或集合交叉連接,並返回它們之間的所有可能排列。
安裝:
- 可以通過NPM安裝Collect.js:
npm install --save collect.js
- 您還可以使用collect.js的CDN
<script src="https://cdnjs.com/libraries/collect.js"></script>
用法:
collect(array1).crossJoin(array2)
參數:collect()接受一個參數,該參數將轉換為集合,然後crossJoin()函數也接受一個數組。
返回值:返回一個數組,其中包含所有可能的排列。
下麵的示例說明了JavaScript中的crossJoin()方法:示例:這裏的collect = require(‘collect.js’)用於將collect.js庫導入文件中。
const collect = require('collect.js');
let numbers = [1, 2, 3, 4]
let alphabets = ['a', 'b', 'c', 'd']
// covert into collection
const collection = collect(numbers);
const permutations = collection.crossJoin(alphabets)
// returning the permutations
let arr = permutations.all();
console.log("Permutations:", arr);
輸出
相關用法
- Collect.js contains()用法及代碼示例
- JQuery add()用法及代碼示例
- p5.js Camera pan()用法及代碼示例
- Collect.js dd()用法及代碼示例
- p5.js Table get()用法及代碼示例
- Lodash _.last()用法及代碼示例
- Lodash _.take()用法及代碼示例
- Lodash _.nth()用法及代碼示例
- Collect.js avg()用法及代碼示例
- Lodash _.xor()用法及代碼示例
- JQuery when()用法及代碼示例
- underscore.js _.keep()用法及代碼示例
- JQuery css()用法及代碼示例
- JQuery sub()用法及代碼示例
- underscore.js _.best()用法及代碼示例
- underscore.js _.third()用法及代碼示例
- underscore.js _.nth()用法及代碼示例
- p5.js Table set()用法及代碼示例
- Collect.js all()用法及代碼示例
注:本文由純淨天空篩選整理自iamsahil1910大神的英文原創作品 Collect.js | crossJoin() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。