startsWith() / endsWith()
startsWith() / endsWith()메서드에 대해 알아보는 시간을 가지도록 하겠습니다.
startsWith() / endsWith()
startsWith() 메서드는 시작하는 문자열에서 문자열을 검색하여 불린( true,false)으로 반환합니다.
endsWith() 메서드는 끝나는 문자열에서 문자열을 검색하여 불린(true, false)으로 반환합니다.
"문자열".startsWith(검색 문자열);
"문자열".startsWith(검색 문자열, 위치값);
"문자열".endsWith(검색 문자열;
"문자열".endsWith(검색 문자열, 시작 위치값);
"문자열".startsWith(검색 문자열, 위치값);
"문자열".endsWith(검색 문자열;
"문자열".endsWith(검색 문자열, 시작 위치값);
{
const str1 = "javscript reference";
const currentStr1 = str1.startsWith('javascript'); //true
const currentStr2 = str1.startsWith('j'); //true
const currentStr3 = str1.startsWith('java'); //true
const currentStr4 = str1.startsWith('reference'); //false
const currentStr5 = str1.startsWith(); //false
const currentStr6 = str1.startsWith(''); //true
const currentStr7 = str1.startsWith('reference', 7); //false
const currentStr8 = str1.startsWith('reference', 11); //true
const currentStr9 = str1.endsWith('reference'); //true
const currentStr10 = str1.endsWith('e'); //true
const currentStr11 = str1.endsWith('refer'); //false
const currentStr12 = str1.endsWith('javascript'); //false
const currentStr13 = str1.endsWith(); //false
const currentStr14 = str1.endsWith(''); //true
const currentStr15 = str1.endsWith('reference', 7); //false
}
'Javascript' 카테고리의 다른 글
배열 메서드 총정리 (0) | 2022.10.10 |
---|---|
함수 유형 03 (0) | 2022.10.10 |
펼침 연산자 / 객체 구조, 비구조 할당 (0) | 2022.10.10 |
mouseenter / movesover의 차이점 (5) | 2022.09.05 |
요소 크기 속성 / 메서드 (9) | 2022.09.01 |
댓글