Skip to content

Instantly share code, notes, and snippets.

@iddan
Created October 22, 2016 23:00
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 iddan/e78d3a373bac2dc88be9a8f694246d12 to your computer and use it in GitHub Desktop.
Save iddan/e78d3a373bac2dc88be9a8f694246d12 to your computer and use it in GitHub Desktop.
JavaScript String Id for OOP Junkies
export default class ID extends String {
constructor () {
super(Math.random().toString(36).slice(2));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment