my-idlers/node_modules/collect.js/docs/api/join.md
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

22 lines
432 B
Markdown

# `join()`
The join method joins the collection's values with a string:
```js
collect(['a', 'b', 'c']).join(', ');
// 'a, b, c'
collect(['a', 'b', 'c']).join(', ', ', and ');
// 'a, b, and c'
collect(['a', 'b']).join(', ', ' and ');
// 'a and b'
collect(['a']).join(', ', ' and ');
// 'a'
collect([]).join(', ', ' and ');
// ''
```
[View source on GitHub](https://github.com/ecrmnn/collect.js/blob/master/src/methods/join.js)