convert array string objects to array javascript code example
Example 1: convert array of string to array of objects javascript
myArray = myArray.map((str, index) => ({ value: str, id: index + 1 }));
Example 2: convert array object to string javascript
var ar = ['a', 'b', 'c', 'd', 'e', 'f', 'g'];
console.log( ar.join('') );
console.log( ar.join(' : ') );
console.log( ar.join('-') );
console.log( ar.join('|') );
Example 3: js array with objects to string
var array = new Array();
var string;
array[0] = {key: value};
array[1] = {key1: value1};
string = JSON.stringify(array);