Leetcode - 58. Length of Last Word
/** * @param {string} s * @return {number} */ var lengthOfLastWord = function(s) { let words = s.split(" ").filter((word) => word!=""); return words.pop().length };

/**
* @param {string} s
* @return {number}
*/
var lengthOfLastWord = function(s) {
let words = s.split(" ").filter((word) => word!="");
return words.pop().length
};