JavaScript 문자열 indexOf()

Jmnote (토론 | 기여)님의 2023년 10월 28일 (토) 15:02 판 (Jmnote님이 자바스크립트 문자열 indexOf() 문서를 JavaScript 문자열 indexOf() 문서로 이동했습니다)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

JavaScript String indexOf()
자바스크립트 문자열 indexOf()
const str = "hello world hello";
console.log(str.indexOf("hello")); // 1
console.log(str.indexOf("yellow")); // -1 (not exists)
console.log(str.indexOf("hello", 4)); // 12

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}