Skip to content

Instantly share code, notes, and snippets.

@lizthrilla
Created June 27, 2025 15:44
Show Gist options
  • Save lizthrilla/aad9bed5b18703f3d2ef7b592eebcc18 to your computer and use it in GitHub Desktop.
Save lizthrilla/aad9bed5b18703f3d2ef7b592eebcc18 to your computer and use it in GitHub Desktop.
//
var lengthOfLastWord = function(s) {
return s.trim().split(' ').pop().length
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment