how to split 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: string to array javascript
const str = 'Hello!';
console.log(Array.from(str));
Example 4: javascript split
var arr = foo.split('');
console.log(arr);
Example 5: split javascript
var str = "12,15,16,78,59";
var res = str.split(",");
console.log(res[0]);
console.log(res[2]);
Example 6: in javascript how to split string
var str = 'It iS a 5r&e@@t Day.'
var array = str.split(" ");
print(array);
var str = 'It iS a 5r&e@@t Day.'
var array = str.split(" ",2);
print(array);