array to string method code example

Example 1: js array to string

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

Example 2: array to string java

char[] charArray = new char[] {'b','u','z','z'};

String answer = new String(charArray);

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