We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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"
There was an error while loading. Please reload this page.