array javascript untuk string hapus koma

let array = [0, 1, 2, 3, 4, 5];
/*
Array.prototype.join(separator);
Returns a string version of the array with
the input separator between each element.
*/
var string = array.join("");
console.log(string); // -> 012345
MattDESTROYER