[Edit]
+
0
-
0
js split string to array
1 2 3 4var text = 'This is some text...'; var array = text.split(''); // empty separator used console.log(array); // ['T','h','i','s',' ','i','s',' ','s','o','m','e',' ','t','e','x','t','.','.','.']
1 2 3 4var text = 'This is some text...'; var array = text.split(''); // empty separator used console.log(array); // ['T','h','i','s',' ','i','s',' ','s','o','m','e',' ','t','e','x','t','.','.','.']