Skip to content

Instantly share code, notes, and snippets.

@oskarrough
Created December 30, 2019 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oskarrough/6a7fe3597d1bf0c66780e4e5b806e6fc to your computer and use it in GitHub Desktop.
Save oskarrough/6a7fe3597d1bf0c66780e4e5b806e6fc to your computer and use it in GitHub Desktop.
// numeronym('internationalisation')
// returns 'i18n'
function numeronym(text) {
return text[0] + (text.length - 2) + text[text.length - 1]
}
@oskarrough
Copy link
Author

@oskarrough
Copy link
Author

numeronym

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment