make arr from str code example
Example 1: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
Example 2: convert string to array javascript
let myArray = str.split(" ");
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
let myArray = str.split(" ");