in javascript how do you get array out of a string code example
Example: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks