Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Created June 20, 2020 20:34
Show Gist options
  • Save luislobo14rap/ac38479f4f80088a8a379f77c38bfd29 to your computer and use it in GitHub Desktop.
Save luislobo14rap/ac38479f4f80088a8a379f77c38bfd29 to your computer and use it in GitHub Desktop.
random-character.js
function randomCharacter(characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') {
return characters[ Math.floor(Math.random() * characters.length) ];
}
@luislobo14rap
Copy link
Author

'0123456789!@#$%&*()_-+='

@luislobo14rap
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment