arry to string code example

Example 1: js array to string

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

Example 2: how to print a array js

var array = [1,2,3]

for(var i = 0; i < array.length ; i++){
    console.log(array[i])
}

Example 3: array to string javascript

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

Example 4: 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"