Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

for 루프, 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