[CodeKata] 서울에서 김서방 찾기

ryan·2021년 4월 13일
0

CodeKata JS

목록 보기
14/26
post-thumbnail

링크

참고

나의 풀이

function solution(seoul) {
  const index = seoul.indexOf('Kim');
  const answer = `김서방은 ${index}에 있다`;
  return answer;
}

solution(['Jane', 'Kim']);
profile
👨🏻‍💻☕️ 🎹🎵 🐰🎶 🛫📷

0개의 댓글