how to print out a string representation of a javascript array code example
Example 1: js array to string
var myArray = ['no','u'];
var myString = myArray.toString();
Example 2: turn array into string
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"