javascript split an array code example
Example 1: javascript explode
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Example 2: javascript split
var arr = foo.split('');
console.log(arr);
Example 3: javascript split string
const path = "/usr/home/chucknorris"
let result = path.split("/")
console.log(result)
let username = result[3]
console.log(username)
Example 4: HOW TO SPLIT AN ARRAY JAVASCRIPT
array.splice(index, number, item1, ....., itemN)
Example 5: split() javascript
let countWords = function(sentence){
return sentence.split(' ').length;
}
console.log(countWords('Type any sentence here'));