"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
'Javascript' 카테고리의 다른 글
[Javascript] 문자열 대소문자 변경 (0) | 2023.09.07 |
---|---|
[Javascript] 팩토리얼 구현 (0) | 2023.09.06 |
[Javascript] 반복 문자열 생성 (0) | 2023.09.04 |
[Javascript] 문자열 역순으로 뒤집기 (0) | 2023.09.01 |