Guest User

Untitled

a guest
Dec 9th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function randomString(length = 16) {
  2. const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/';
  3. const charCount = chars.length;
  4. let str = '';
  5. while (length-- > 0) {
  6. str += chars[Math.floor(Math.random() * charCount)];
  7. }
  8. return str;
  9. }
Add Comment
Please, Sign In to add comment