Skip to content
Subhajit Sahu edited this page Jun 20, 2020 · 15 revisions

Joins values together. 🏃 📼 📦 🌔 📒

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