Skip to content

Instantly share code, notes, and snippets.

@Falci
Created January 23, 2020 16:09
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 Falci/31731b7d68c2740bb8fad894d44e55b6 to your computer and use it in GitHub Desktop.
Save Falci/31731b7d68c2740bb8fad894d44e55b6 to your computer and use it in GitHub Desktop.
const g7r = (word='') => word.length < 3 ? word : word[0] + (word.length -2) + word[word.length-1];
g7r('generator'); // g7r
g7r('internationalization'); // i18n
g7r('accessibility'); // a11y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment