Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 347 Bytes

File metadata and controls

13 lines (11 loc) · 347 Bytes

Screen Shot 2022-10-10 at 11 56 28 PM

/**
 * @param {string} s
 * @return {number}
 */
var lengthOfLastWord = function(s) {
    const arr = s.trim().split(' ');
    return arr[arr.length - 1].length;
};