javascript array to string remove comma

Solutions on MaxInterview for javascript array to string remove comma by the best coders in the world

showing results for - "javascript array to string remove comma"
Angelo
05 Feb 2019
1var array = [0, 1, 2, 3, 4, 5];
2var string = array.join("");
3console.log(string); // -> 012345