transform ARRAY OF STRINGS INTO SUBSTRINGS JAVASCRIPT 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