[JS] String.startsWith 메소드

SINGING BIRD·2023년 4월 8일

문자열의 앞부분을 체크하는 메소드 입니다.

const string = 'dream is my reality'

console.log(string.startsWith('dream'))
// 이 문자열은 'dream'으로 시작하는가? 
// true

console.log(string.startsWith('is', 6))
// 이 문자열의 index 6 부터 체크하자.
// 'is' 로 시작하는가?
// true
profile
good things take time

0개의 댓글