Answers for "javascript count string occurence"

8

javascript count occurrences of letter in string

function count(str, find) {
    return (str.split(find)).length - 1;
}

count("Good", "o"); // 2
Posted by: Guest on May-31-2021
4

javascript count occurrences in string

function countOccurences(string, word) {
   return string.split(word).length - 1;
}
var text="We went down to the stall, then down to the river."; 
var count=countOccurences(text,"down"); // 2
Posted by: Guest on August-01-2019

Code answers related to "javascript count string occurence"

Code answers related to "Javascript"

Browse Popular Code Answers by Language