Advertisement
outFillippov22

Random String Generator (MINIFIED)

May 18th, 2025 (edited)
675
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // This is a snippet that returns a randomized string you can use.
  2.  
  3. for(s="",i=16;i--;)s+=String.fromCharCode(Math.random()*256|0)
  4.  
  5. // This snippet weighs ≈0.06055 KB or 62 B. It is also a one-liner.
  6. // Use it as-is.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement