kingvlad

Comparators and Equality

Aug 27th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. prompt("Enter First Name");
  2. prompt("Enter Second Name");
  3.  
  4. var loveScore = Math.random() * 100;
  5. loveScore = Math.floor(loveScore) + 1;
  6.  
  7. if (loveScore > 70) {
  8. alert("Your love percentage is "+loveScore + " You guys are in love ");
  9. }
  10.  
  11. if (loveScore > 50 && loveScore <= 70) {
  12. alert("Your love percentage is "+loveScore + " DAMNNNNNN ");
  13. }
  14.  
  15. if (loveScore <= 49) {
  16. alert("Your love percentage is "+loveScore + " OIL AND WATER ");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment