Skip to content
Subhajit Sahu edited this page Feb 2, 2021 · 15 revisions

Joins values together. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: concat, join.


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

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

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


References

Clone this wiki locally