Last active
February 25, 2021 10:34
-
-
Save 0rbianta/9fb318d644bf83fe4f23c8b8bcd38353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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