Count number of word from given string using javascript satish mallick January 11, 2015 <script> var str = "satish mallick." ; var wordCount = str . match ( /(\w+)/ g ). length ; alert ( wordCount ); ... Read More