Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การหาจำนวนครั้งที่ตัวอักษรหนึ่งๆ ปรากฏในประโยคโดยใช้ for loop, break และ continue - JavaScript


เราจำเป็นต้องเขียนฟังก์ชัน JavaScript เพื่อค้นหาจำนวนครั้งที่ตัวอักษรเฉพาะปรากฏในประโยค

ตัวอย่าง

มาเขียนโค้ดสำหรับฟังก์ชันนี้กัน −

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