string into an array js code example

Example 1: string split javascript

var myString = "An,array,in,a,string,separated,by,a,comma";
var myArray = myString.split(",");
/* 
*
*  myArray :
*  ['An', 'array', 'in', 'a', 'string', 'separated', 'by', 'a', 'comma']
*
*/

Example 2: string to array javascript

const str = 'Hello!';

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

Example 3: js string to array

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

Example 4: javascript string to array

const str = 'Hello!';

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