function solution(seoul) {
let indexOfKim = seoul.indexOf('Kim');
return `김서방은 ${indexOfKim}에 있다`
}
arr.indexOf(e,from) : from 이후부터 e와 일치하는 elem이 있을 때 elem의 index 반환
arr.includes(e,from) : from 이후부터 e와 일치하는 elem이 있다면 true;
arr.findIndex((e,i,arr) => ())) : 조건에 가장 먼저 부합하는 요소의 인덱스를 반환