๐ ๋ฌธ์
- Stringํ ๋ฐฐ์ด seoul์ element์ค "Kim"์ ์์น x๋ฅผ ์ฐพ์, "๊น์๋ฐฉ์ x์ ์๋ค"๋ String์ ๋ฐํํ๋ ํจ์, solution์ ์์ฑํ์ธ์. seoul์ "Kim"์ ์ค์ง ํ ๋ฒ๋ง ๋ํ๋๋ฉฐ ์๋ชป๋ ๊ฐ์ด ์
๋ ฅ๋๋ ๊ฒฝ์ฐ๋ ์์ต๋๋ค.
https://programmers.co.kr/learn/courses/30/lessons/12919
๐ ๋ฌธ์ ํ์ด
function solution(seoul) {
const num = seoul.indexOf("Kim");
return `๊น์๋ฐฉ์ ${num}์ ์๋ค`;
}
- indexOf๋ก 'Kim' ์์น๋ฅผ ์ฐพ์์ ๋ฐํ
๐ฌ ์ ๋ฆฌ
arr.indexOf(searchElement[, fromIndex])
๋ฐฐ์ด ์์์ ์ฐพ์ผ๋ ค๋ ๊ฐ(searchElement)๊ณผ ์ ํํ๊ฒ ์ผ์น(===)ํ๋ '์ฒซ๋ฒ์งธ' element์ index ๋ฐํ
- ย
searchElement
์ฐพ์ผ๋ ค๋ ๊ฐ
- ย
fromIndex
๊ฒ์์ ์์ํ index ์์น (์๋ต ์ ๋ถํฐ ๊ฒ์)