array to str js code example

Example 1: js array to string

var myArray = ['no','u'];
var myString = myArray.toString();

Example 2: array to string javascript

<array>.join(<splitting character(s)>);

Example 3: js join

const elements = ['Fire', 'Air', 'Water'];

console.log(elements.join());
// expected output: "Fire,Air,Water"

console.log(elements.join(''));
// expected output: "FireAirWater"

console.log(elements.join('-'));
// expected output: "Fire-Air-Water"