Skip to content
Subhajit Sahu edited this page May 3, 2023 · 15 revisions

Join values together into a string.

Similar: concat, join.


function join(x, sep)
// x:   an array
// sep: separator [,]
const xarray = require('extra-array');

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

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


References

Clone this wiki locally