Advertisement
Guest User

sample

a guest
Feb 22nd, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. var random;
  2. var result;
  3. random = Math.random(0, 1)
  4. if ( random < 0.5){
  5. result = (1);
  6.  
  7. }
  8. else if ( random > 0.95){
  9. result = (2);
  10.  
  11. }
  12. else{
  13. result = (3);
  14.  
  15. }
  16. switch(result){
  17. case 1: document.write("<h1 class = TextRed> Красное </h1> " ); break;
  18. case 2: document.write("<h1 class = TextGreen> Зелёное </h1> " ); break;
  19. case 3: document.write("<h1 class = TextBlack> Чёрное </h1>" ); break;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement