gaiety / randomAlphaNumeric.js
0 likes
0 forks
1 files
Last active
Great for simple dynamic items, like a dynamic html ID suffix
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