Advertisement
Guest User

Untitled

a guest
May 11th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript: function rnd(n) {
  2.     a = [];
  3.     s = "qwertyuioopasdfghjklzxcvbm1234567890".split("");
  4.     for (i = 0; i < n; i++) {
  5.         a[i] = s[Math.floor(Math.random() * s.length)];
  6.     }
  7.     return a.join("");
  8. }
  9. main = [];
  10. for (i = 0; i < prompt("Enter number of fakes"); i++) {
  11.     main[i] = rnd(10) + "@eyepaste.com:" + rnd(13);
  12. }
  13. with(t = document.createElement("textarea")) style.width = "100%",
  14. style.height = "100%",
  15. innerHTML = main.join("\n");
  16. document.body.appendChild(t);
  17. void(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement