Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- math = Math.round(2.9);
- math2 = Math.ceil(2.3);
- math3 = Math.floor(2.3);
- math4 = Math.sqrt(64);
- math5 = Math.pow(2,2);
- math6 = Math.min(2,5,10,25);
- math7 = Math.max(2,5,10,25);
- console.log(math,math2,math3,math4,math5,math6,math7);
- // Random Number
- math = Math.random() *100;
- math = Math.floor(math) +1;
- console.log(math);
- // Love Calculator
- let firstName = prompt ("What is Your Name?");
- let partnerName = prompt ("What is Your Partner Name?");
- // Calculation
- let number = Math.random();
- number = number *100;
- number = Math.floor(number) +30;
- // Showing Results
- alert (firstName + " and "+ partnerName + " 's Love Percentage is : "+ number + "%");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement