Skip to content

Instantly share code, notes, and snippets.

@ernestlv
Created April 26, 2016 15:10
Show Gist options
  • Save ernestlv/0734b66ee7c6c4d5d2da1ec15fec1f43 to your computer and use it in GitHub Desktop.
Save ernestlv/0734b66ee7c6c4d5d2da1ec15fec1f43 to your computer and use it in GitHub Desktop.
generates an ID
var id = (Math.random() * (1000000000 - 1) + 1 | 0) + ":" + (new Date().getTime())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment