convert string to array javascript

JavaScript
//split into array of strings.
var str = "Well, how, are , we , doing, today";
var res = str.split(",");const str = 'Hello!';

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

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

// splits every letter in string into an item in our array
let newArray = string.split('');

console.log(newArray); // OUTPUTS: [ "A", "B", "C", "D", "E", "F", "G" ]var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
let myArray = str.split(" ");
Source

Also in JavaScript: