Skip to content

Instantly share code, notes, and snippets.

@erikjung
Last active October 2, 2015 06:58
Show Gist options
  • Save erikjung/795e359ffe91798916b6 to your computer and use it in GitHub Desktop.
Save erikjung/795e359ffe91798916b6 to your computer and use it in GitHub Desktop.
function numeronymize (input) {
let chars = input.split('')
let first = chars.shift()
let last = chars.pop()
return (first + chars.length + last).toLowerCase()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment