Advertisement
sotatop

Random Quotes

Feb 18th, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var quotes = new Array();
  2.  
  3. // Add quotes here
  4.  
  5. quotes [0] = "Quote1";
  6. quotes [1] = "Quote2";
  7. quotes [2] = "Quote3";
  8. quotes [3] = "Quote4";
  9.  
  10. // And so on in a suchlike fashion
  11.  
  12. document.write(quotes[(Math.floor(Math.random()*quotes.length))]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement