javascript convert string list to array code example
Example 1: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
Example 2: javascript string to array
const str = 'Hello!';
const arr = Array.from(str);
//[ 'H', 'e', 'l', 'l', 'o', '!' ]
Example 3: how to convert array converted to string back to array javasccript
var array = '[[1, 2, 3], [4, 5, 6]]';
JSON.parse(array);