You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(returnLengthOfLastWord(' hello bob '), 3)
console.log(returnLengthOfLastWord('hello'), 5)
// A string of words. Each word is seperated by a space. There may be trailing spaces at the end of the string. Length is always contains at least one word.
// Return the length of the last word in the string.
// Trim the string.
// Split the string.
// Return the length of the last elem of the array.