array to string javascript code example

Example 1: join last element of array javascript with different value

['tom', 'dick', 'harry'].join(', ').replace(/, ([^,]*)$/, ' and $1')
> "tom, dick and harry"

Example 2: js array to string

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

Example 3: javascript convert in a string the items of an array

const arr = [1, 2, 'a', '1a'];
const str = arr.toString();
console.log(str); //> "1,2,a,1a"

Example 4: array to string js

array.join("").toString()

Example 5: array to string javascript

var cars = ["Volvo", "BMW", "Audi", "Chevrolet"];
console.log(cars.toString());
//Output: Volvo,BMW,Audi,Chevrolet

Example 6: array to string javascript

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