make an array of array to an array of string js code example
Example 1: js array to string
var myArray = ['no','u'];
var myString = myArray.toString();
Example 2: array to string javascript
var cars = ["Volvo", "BMW", "Audi", "Chevrolet"];
console.log(cars.toString());
//Output: Volvo,BMW,Audi,Chevrolet