본문 바로가기

basic/Vanilla.js

[Vanilla.js] startsWith(), endsWith(), includes() ... ES6

[ ES6에 추가된 string 함수들 ]

startsWith(): 변수의 앞에서 부터 일치하는 문자열을 찾아 true또는 false를 반환한다.

 

endsWith(): 변수의 뒤에서 부터 일치하는 문자열을 찾아 true또는 false를 반환한다.

 

includes(): 위치에 상관없이 변수에 특정 문자열이 포함되어 있는지를 판단하여 true또는 false를 반환한다.

var str = 'Hello World!'
 
console.log(str.startsWith('hello')) //true
console.log(str.endsWith('world')) //true
console.log(str.inludes('hi')) //false