Como verificar quantas strings estão em uma frase JavaScript
function WordCounter (str) {
var words = str.split(" ").length;
return words;
}
// this should work!
TechWhizKid