본문 바로가기
웹/JavaScript

es6에서 추가된 string 메소드들

by void pattern 2021. 1. 2.

let str = 'hello world';
let stmsg = 'hello';
let endmsg = 'world';
console.log(str.startsWith(stmsg)); //true 
console.log(str.endsWith(endmsg));  //true
console.log(str.includes("world")); //true

startsWith 

비교하는 문자열에서 시작 string이 동일한지 비교

일치하면 true 반환

일치하지 않으면 false 반환

 

endsWith

비교하는 문자열에서 string이 동일한지 비교

일치하면 true 반환

일치하지 않으면 false 반환

 

includes

문자열이 포함되어 있는지 동일한지 비교

일치하면 true 반환

일치하지 않으면 false 반환

댓글