[LeetCode] Length of Last Word - JavaScript

이은빈 EUNBIN·2021년 4월 19일
0
post-thumbnail

👩🏻‍💻 문제

LeetCode #58 Length of Last Word



👩🏻‍💻 풀이

var lengthOfLastWord = function(s) {
    return s.trim().split(" ").pop().length;
};

trim()
양끝의 공백을 제거한 문자열을 반환 (원본 문자열에는 영향을 주지 않음)

JavaSript trim() 메서드

profile
Frontend Engineer & Value Creator

0개의 댓글