endsWith

Javascript

[Javascript] 문자열의 마지막 글자 가져오기 / 문자열의 마지막 글자가 지정한 문자와 동일한지 확인하기

"Hello word" 의 마지막 글자인 "d" 를 가져오는 방법 const helloWorld = "Hello world"; const lastLetter = helloWorld.charAt(helloWorld.length - 1); // "d" "Hello world" 의 마지막 글자가 "d" 인지 확인하는 방법 const helloWorld = "Hello world"; const isMatched = helloWorld.endsWith("d"); // true

Dellah
'endsWith' 태그의 글 목록