https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith
어떤 문자열이 다른 문자열로 시작하는지 확인할 수 있다.
const str = "hello world";
str.startsWith("hello"); //true
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith
문자열의 끝이 특정 문자열로 끝나는지 확인할 수 있다.
const str = "hello world";
str.endsWith("hi"); //false
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