Skip to content

Instantly share code, notes, and snippets.

@onebelarusianguy
Last active March 23, 2021 02:38
Show Gist options
  • Select an option

  • Save onebelarusianguy/4ad313cae85612f9b9b38f23474bc9ca to your computer and use it in GitHub Desktop.

Select an option

Save onebelarusianguy/4ad313cae85612f9b9b38f23474bc9ca to your computer and use it in GitHub Desktop.
E
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