gaiety revised this gist . Go to revision
No changes
gaiety revised this gist . Go to revision
1 file changed, 6 insertions
randomAlphaNumeric.js(file created)
@@ -0,0 +1,6 @@ | |||
1 | + | # Returns random a-z0-9 pattern of 9 characters | |
2 | + | # Example: qhp050kba | |
3 | + | ||
4 | + | function randomAlphaNumeric() { | |
5 | + | return Math.random().toString(36).slice(2) | |
6 | + | } |
Newer
Older