ES2015+(ES6) String 메서드


//ES2015+ String 메서드

const str = "Hello Wrold! :)";
const str2 = ":)";

console.log(str.startsWith(str2)); //false
console.log(str.endsWith(str2));  //true
console.log(str.includes(str2));  //true

 

ES6에 새롭게 추가된 문자열 메서드로, startsWith는 시작 문자열 비교, endsWith 끝 문자열 비교, includes는 문자 포함 여부를 확인해준다.