how to split a string js code example
Example 1: javascript explode
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Example 2: string split javascript
var myString = "An,array,in,a,string,separated,by,a,comma";
var myArray = myString.split(",");
Example 3: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');
Example 4: js split string
var myString = "Hello World!";
var splitWords = myString.split(" ");
var hello = splitWords[splitWords.indexOf("Hello")];