728x90
300x250
SMALL
includes()
문자에 지정된 값이 포함되어 있으면 true를 반환하고 없으면 false를 반환한다.
<p id="demo"></p>
<p>The includes() method is not supported in Internet Explorer.</p>
<script>
let text = "Hello world, welcome to the universe.";
document.getElementById("demo").innerHTML = text.includes("world");
</script>
실행결과
true
검색 시작위치 지정하기
<p id="demo"></p>
<p>The includes() method is not supported in Internet Explorer.</p>
<script>
let text = "Hello world, welcome to the universe.";
document.getElementById("demo").innerHTML = text.includes("world", 12);
</script>
실행결과
false
12위치에서 검색 시작 world가 있으면 true 없으면 false
728x90
반응형
LIST
'javaScript > JS Tutorial' 카테고리의 다른 글
[자바스크립트]number 지수 표기 123e5 (0) | 2022.09.28 |
---|---|
[자바스크립트]endsWith() 끝나는 문자열 확인하기 (0) | 2022.09.27 |
[javaScript] 지정된 텍스트 인덱스 위치 반환 indexOf() lastIndexOf() (0) | 2022.09.24 |
[자바스크립트]문자열 배열로 변환하고 각 배열 반복문으로 출력 (0) | 2022.09.23 |
[javaScript] 문자열을 배열로 변환 split() (0) | 2022.09.22 |
댓글