join()方法用於通過給定的字符串連接收集元素並返回收集元素。
用法:
collect(array).join()
參數:collect()方法采用一個參數,該參數將轉換為集合,然後在其上應用join()方法。
返回值:此方法使用給定的字符串連接集合元素並返回值。
下麵的示例說明了collect.js中的join()方法:
範例1:
const collect = require('collect.js');
let arr1 = [10, 20, 30, 40, 50];
const collection1 = collect(arr1);
console.log(collection1.join(', '));
let arr2 = ['a', 'b', 'c', 'd'];
const collection2 = collect(arr2);
console.log(collection2.join(', ', ' and '));
輸出:
10, 20, 30, 40, 50 a, b, c and d
範例2:
const collect = require('collect.js');
let arr = ['Geeks', 'GFG', 'GeeksforGeeks'];
const collection = collect(arr);
console.log(collection.join(', '));
輸出:
Geeks, GFG, GeeksforGeeks
相關用法
- Javascript Array.join()用法及代碼示例
- Node.js path.join()用法及代碼示例
- Typescript Array join()用法及代碼示例
- Lodash _.join()用法及代碼示例
- PHP join()用法及代碼示例
- Javascript Array join()用法及代碼示例
- Javascript typedArray.join()用法及代碼示例
- PHP Ds\Sequence join()用法及代碼示例
- PHP Ds\Vector join()用法及代碼示例
- PHP Ds\Deque join()用法及代碼示例
- p5.js join()用法及代碼示例
- PHP Ds\Set join()用法及代碼示例
- Node.js join()用法及代碼示例
- Lodash _.method()用法及代碼示例
- Node.js Http2ServerRequest.method用法及代碼示例
- Javascript dataView.getInt16()用法及代碼示例
- Javascript RegExp toString()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 Collect.js join() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。