solution('KoreaTimeGood');
function solution(str) {
let answer = str.split('').filter(function (v,i){
return v === v.toUpperCase();
});
console.log(answer.length);
}
알려주신 filter를 통해 풀어봤습니다.
강준식
작성일
21.07.11 22:35
조회수
161
댓글 0