berfungsi untuk menghitung kata dalam string

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