06.반복문_countCharacter

2020. 2. 13. 15:05
728x90

문자열과 문자가 주어졌을때, "countCharacter" 함수는 주어진 문자열에서 주어진 문자가 몇개가 있는지를 반환해야 합니다.

Given a string input and a character, "countCharacter" returns the number of occurences of a given character in the given string. 

위의 문제를 해결하기 위해서는 아래의 4가지 조건을 만족해야한다:

1. 숫자를 반환해야함

2. 주어진 문자가 문자열에 몇개 있는지를 반환해야함

3. 알파벳이든 아니든, 정상적으로 작동해야함

4. 문자가 주어진 문자열에 존재하지 않으면 0을 반환해야함

 solution 

function countCharacter(str, char) {
  var count = 0;
  for(var i = 1 ; i <= str.length ; i++){
    if(str[i] === char){
      count++;
    }
  }
  return count;
}

 

728x90

'Codestates precourse' 카테고리의 다른 글

08.배열의반복_getAllLetters  (0) 2020.02.14
07.배열기초_getFirstElement  (0) 2020.02.13
05.반복문_repeatString  (0) 2020.02.13
반복문(Iteration)  (0) 2020.01.28
배열(Array).js  (0) 2020.01.28

BELATED ARTICLES

more