javascript split string at space code example
Example 1: js split text on spaces
var string = "text to split";
var words = string.split(" ");
Example 2: split() javascript
let countWords = function(sentence){
return sentence.split(' ').length;
}
console.log(countWords('Type any sentence here'));
//result will be '4'(for words in the sentence)