티스토리 뷰

728x90
SMALL

풀이

기본 for, if문

function solution(seoul) {
    for(let i=0;i<seoul.length;i++){
        if(seoul[i]==="Kim"){
            return "김서방은 "+i+"에 있다"
            break;
        }
    }
}

 indexof 사용

function solution(seoul) {
    const i=seoul.indexOf('Kim');
    return "김서방은 "+i+"에 있다"
}
728x90
LIST
댓글
공지사항