[javascript] startsWith(), endsWith(), includes()

sunny·2021년 1월 12일
0

🐣 javascript ES6

목록 보기
1/15
post-thumbnail

startsWith()

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith

어떤 문자열이 다른 문자열로 시작하는지 확인할 수 있다.

const str = "hello world";
str.startsWith("hello"); //true

endsWith()

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith

문자열의 끝이 특정 문자열로 끝나는지 확인할 수 있다.

const str = "hello world";
str.endsWith("hi"); //false

includes()

문자열의 경우

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/includes

하나의 문자열이 다른 문자열에 포함되어 있는지를 판별하고, 결과를 true 또는 false 로 반환한다.

const str = "hello world";
str.includes("ello"); //true

배열의 경우

https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/includes

배열이 특정 요소를 포함하고 있는지 판별한다.

const str = ["orange", "apple", "banana"];
str.includes("strawberry"); //false
profile
blog 👉🏻 https://kimnamsun.github.io/

0개의 댓글

관련 채용 정보