We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b11a60 commit 904699eCopy full SHA for 904699e
1 file changed
Easy-Programming-Challenges/WordCount.js
@@ -0,0 +1,4 @@
1
+function WordCount(str) {
2
+ var arr= str.split(" " );
3
+ return arr.length;
4
+}
0 commit comments