codechacha / codechacha-comments-repo

codechacha-comments-repo
0 stars 0 forks source link

JavaScript - 문자열의 마지막 문자 가져오기, 4가지 방법 #22

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

JavaScript - 문자열의 마지막 문자 가져오기, 4가지 방법

자바스크립트에서 문자열의 마지막 문자를 가져오는 방법 4가지를 소개합니다. charAt(Index)는 Index의 문자를 가져옵니다. charAt(Index)처럼 아래와 같이 str[Index]로 특정 Index의 문자를 가져올 수 있습니다. slice(start)는 start index 부터 문자열 마지막까지 잘라서 리턴합니다. substr()도 slice()

https://codechacha.com/ko/javascript-get-last-char-in-str/

hyeonju9705 commented 2 years ago

잘봤습니다!