javascript split string space code example
Example 1: js split text on spaces
var string = "text to split";
var words = string.split(" ");
Example 2: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks