Convert string array to array javascript code example

Example 1: string to array javascript

const str = 'Hello!';

console.log(Array.from(str)); //  ["H", "e", "l", "l", "o", "!"]

Example 2: js string to array

var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks

Example 3: javascript string to array

const str = 'Hello!';

const arr = Array.from(str);
//[ 'H', 'e', 'l', 'l', 'o', '!' ]

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

// console.log(a)
Array.from(a).forEach(function (element){
    console.log(element)
})

Tags: