문제 설명
문자열에서 "a"가 몇 번 등장하는지 횟수를 구하는 함수를 만들려고 합니다.
반복문을 이용해 "a"의 등장 횟수를 변수 "count"에 할당하세요.
입력 인자
주의 사항
예상 결과
countLetter("I am from Korea") // 2
countLetter("A day without laughter is a day wasted.") // 6
실습 코드
function countLetter(str) {
let count = 0
for (let i=0; i< str.length; i++){
if(str[i] === "a" || str[i] ==="A" ){
count++
}
}
return(count);
}