função para contar palavras em string

function countWords(str) {
  return str.trim().split(/\s+/).length;
}
Delightful Dove