Guest User

Untitled

a guest
Feb 25th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. let memes = ["Fuck you Wam", "Haha content", "Memes", "Begone thot"];
  2.  
  3. function haha() {
  4. console.log(memes[Math.floor(Math.random() * memes.length)]);
  5. }
  6.  
  7. for(;;) {
  8. haha();
  9. }
Add Comment
Please, Sign In to add comment