Skip to content

Instantly share code, notes, and snippets.

@leplay
Last active January 8, 2019 04:13
Show Gist options
  • Save leplay/9429c87cca752178d10de56cb753eb88 to your computer and use it in GitHub Desktop.
Save leplay/9429c87cca752178d10de56cb753eb88 to your computer and use it in GitHub Desktop.
Random String in JavaScript
// https://stackoverflow.com/a/1349426
let r = Math.random().toString(36).substr(2, 5)
console.log("random", r)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment