string to javascript array code example
Example 1: javascript explode
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Example 2: string to array javascript
const str = 'Hello!';
console.log(Array.from(str));
Example 3: javascript split
var arr = foo.split('');
console.log(arr);
Example 4: javascript split
var names = 'Harry ;Fred Barney; Helen Rigby ; Bill Abel ;Chris Hand ';
console.log(names);
var re = /\s*(?:;|$)\s*/;
var nameList = names.split(re);
console.log(nameList);
Example 5: string to array in js
Object.assign([], 'string').bold;