Last active
March 23, 2021 02:38
-
-
Save onebelarusianguy/4ad313cae85612f9b9b38f23474bc9ca to your computer and use it in GitHub Desktop.
E
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function e() { | |
| var h = prompt('How many hours you have worked?'), | |
| m = prompt('minutes?'), | |
| rate = prompt('your rate?'); | |
| var result = (parseInt(h) * 60 + parseInt(m)) * (parseInt(rate) / 60); | |
| alert('Result: ' + result); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment