fonction pour compter les mots dans la chaîne

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