-
Notifications
You must be signed in to change notification settings - Fork 5
join
Subhajit Sahu edited this page May 19, 2020
·
15 revisions
Joins values together. [:running:] [:vhs:] [:package:] [:moon:] [:ledger:]
iterable.join(x, [sep]);
// x: an iterable
// sep: separator (,)
const iterable = require('extra-iterable');
var x = [1, 2];
array.join(x);
// '1,2'
array.join(x, ' : ');
// '1 : 2'