当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。