Skip to content

Instantly share code, notes, and snippets.

@IgorHalfeld
Created April 5, 2019 19:37
Show Gist options
  • Select an option

  • Save IgorHalfeld/87f92cee596b6292534ac3ef5245cbc6 to your computer and use it in GitHub Desktop.

Select an option

Save IgorHalfeld/87f92cee596b6292534ac3ef5245cbc6 to your computer and use it in GitHub Desktop.
Generate random string
function getRandomString() {
const x = 2147483648;
return (
Math.floor(Math.random() * x).toString(36) +
Math.abs(Math.floor(Math.random() * x) ^ Date.now()).toString(36)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment