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


Lodash _.join()用法及代碼示例


_.join()函數用於將數組中的所有元素轉換為由分隔符分隔的字符串。

用法:

_.join(array, [separator=','])

參數:此方法接受上麵提到和下麵描述的兩個參數:

  • array:它是要從中執行聯接操作的原始數組。
  • separator:一個字符串,用於分隔數組的每個元素。如果保留默認值,則用逗號(,)分隔數組元素。

返回值:該函數返回一個字符串,該字符串是通過使用分隔符連接數組的所有元素而創建的。

注意:在使用下麵給出的代碼之前,使用命令npm安裝lodash來安裝lodash模塊。



範例1:在此示例中,函數join()使用'|'將數組的元素連接在一起成為一個字符串。

Javascript

// Requiring the lodash library  
let lodash = require("lodash");  
    
// Original array to be joined  
let array = [ 1, 2, 3, 4, 5, 6 ];  
    
let newArray = lodash.join(array, '|');  
console.log("Before Join:" + array);  
    
// Printing newArray   
console.log("After Join:" + newArray);

輸出:

範例2:在此示例中,由於函數join()是默認值,因此使用“,”將數組中的元素連接到一個字符串中。

Javascript

// Requiring the lodash library  
let lodash = require("lodash");  
    
// Original array to be joined  
let array = [ 1, 2, 3, 4, 5, 6 ];  
    
let newArray = lodash.join(array);  
console.log("Before Join:" + array);  
    
// Printing newArray   
console.log("After Join:" + newArray);

輸出:

範例3:在此示例中,函數join()使用‘’(空字符串)將數組的元素連接在一起成為一個字符串。

Javascript

// Requiring the lodash library  
let lodash = require("lodash");  
    
// Original array to be joined  
let array = [ 1, 2, 3, 4, 5, 6 ];  
    
let newArray = lodash.join(array,'');  
console.log("Before Join:" + array);  
    
// Printing newArray   
console.log("After Join:" + newArray);

輸出:

相關用法


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