728x90
반응형
ES6에서 추가된 String의 메서드들
String.startsWith(matchString) |
matchString이 String의 앞부터 일치하는지 확인 (true/false) |
String.endsWith(matchString) |
matchString이 String의 뒤부터 일치하는지 확인 (true/false) |
String.includes(matchString) |
matchString이 String에 포함되어 있는지 확인(true/false) |
예시
let str = "hello world ~!~!";
str.startsWith("hello"); //true
str.endsWith("~!~!"); //true
str.startsWith("h ello"); //false
str.endsWith("~! ~!"); //false
str.includes("~!"); //true
728x90
반응형
'Javascript' 카테고리의 다른 글
[JS/ES6] spread operator (0) | 2019.02.03 |
---|---|
[JS/ES6] for in의 단점, for of의 등장 (0) | 2019.02.03 |
[JS] 클로저(closure) (0) | 2019.02.02 |
[Javascript/JQuery] radio checked value 값 알아내기 (0) | 2018.10.28 |
[Javascript] a 태그의 href 기능 없애기 (0) | 2018.10.27 |