Skip to content

Instantly share code, notes, and snippets.

@0rbianta
Last active February 25, 2021 10:34
Show Gist options
  • Save 0rbianta/9fb318d644bf83fe4f23c8b8bcd38353 to your computer and use it in GitHub Desktop.
Save 0rbianta/9fb318d644bf83fe4f23c8b8bcd38353 to your computer and use it in GitHub Desktop.
const data = "Hello World!!! This is a simple JS code to count word number.";
word_count = 0;
for(let i = 0;i<data.length;i++){
if(data[i]==" "){
word_count++;
}
}
console.log(word_count+1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment