Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 18 revisions

Joins values together. 🏃 📼 📦 🌔 📒

Similar: concat, join.


iterable.join(x, [sep]);
// x:   an iterable
// sep: separator (,)
const iterable = require("extra-iterable");

var x = [1, 2];
iterable.join(x);
// "1,2"

iterable.join(x, " : ");
// "1 : 2"


References

Clone this wiki locally