[프로그래머스 level1] 서울에서 김서방 찾기

김예지·2021년 10월 11일
0

문제

https://programmers.co.kr/learn/courses/30/lessons/12919


문제 풀이

코드

function solution(seoul) {
    let pos=seoul.indexOf('Kim');
    return `김서방은 ${pos}에 있다`;
}
profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

1개의 댓글

comment-user-thumbnail
2021년 10월 25일

10/25
템플릿 태그를 사용해서 아래와같이 코딩할 수 있다.

function solution(seoul) {
    return `김서방은 ${seoul.indexOf('Kim')}에 있다`
}
답글 달기