當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Collect.js join()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 Collect.js join() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。