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 iterable // sep: separator [,]
const xiterable = require('extra-iterable'); var x = [1, 2]; xiterable.join(x); // → "1,2" xiterable.join(x, " : "); // → "1 : 2"
There was an error while loading. Please reload this page.