indexOf()1 indexOf() | lastindexOf() indexOf() | lastindexOf() 문자열에서 특정 문자의 위치를 찾고 숫자를 반환합니다. "문자열".indexOf(검색값) "문자열".indexOf(검색값, 위치값) 만약 하나의 문자가아닌 여러개의 문자라면, 일치하는 값의 첫번째 위치값을 알려줍니다. 또한 검색값에 음수를 사용하면 뒤에서 부터 찾습니다. "문자열".lastindexOf(검색값) "문자열".lastindexOf(검색값, 위치값) const str1 = "javascript reference" const currentStr1 = str1.indexOf("javascript"); // 0 const currentStr2 = str1.indexOf("reference"); // 11 const currentStr3 = str1.in.. 2022. 8. 16. 이전 1 다음 728x90 반응형