[Edit]
+
0
-
0
js split string to array
1 2 3 4var text = 'This is some text...'; var array = text.split('is'); // this character sequence separates string console.log(array); // ['Th',' ',' some text...']
1 2 3 4var text = 'This is some text...'; var array = text.split('is'); // this character sequence separates string console.log(array); // ['Th',' ',' some text...']