알고리즘 13 - Vowel Count

박진현·2021년 7월 13일
0

Q.

Return the number (count) of vowels in the given string.

We will consider a, e, i, o, u as vowels for this Kata (but not y).

The input string will only consist of lower case letters and/or spaces.

A)

function getCount(str) {
  
  return str.replace(/[^aeiou]/gi,'').length
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글