हमें एक जावास्क्रिप्ट फ़ंक्शन लिखने की आवश्यकता होती है जो यह पता लगाता है कि वाक्य में एक विशिष्ट अक्षर कितनी बार दिखाई दे रहा है
उदाहरण
आइए इस फ़ंक्शन के लिए कोड लिखें -
const string = 'This is just an example string for the program'; const countAppearances = (str, char) => { let count = 0; for(let i = 0; i < str.length; i++){ if(str[i] !== char){ // using continue to move to next iteration continue; }; // if we reached here it means that str[i] and char are same // so we increase the count count++; }; return count; }; console.log(countAppearances(string, 'a')); console.log(countAppearances(string, 'e')); console.log(countAppearances(string, 's'));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
3 3 4