array of strings to string js code example
Example 1: js array to string
var myArray = ['no','u'];
var myString = myArray.toString();
Example 2: .join javascript
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"
Example 3: javascript array to string without commas
arr.join("")
Example 4: array to string js
array.join("").toString()