Convert string array to array javascript code example
Example 1: string to array javascript
const str = 'Hello!';
console.log(Array.from(str));
Example 2: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');
Example 3: javascript string to array
const str = 'Hello!';
const arr = Array.from(str);
Example 4: convert matrix string to matrix javascript
string = '[[1, 2], [3, 4], [5, 6]]'
string = JSON.parse(string)
Example 5: how to change string to array in javascript
a=anyElement.all
Array.from(a).forEach(function (element){
console.log(element)
})