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