Skip to content

Instantly share code, notes, and snippets.

@ArtemFedorchuk
Created September 9, 2018 11:47
Show Gist options
  • Select an option

  • Save ArtemFedorchuk/d3e5cec489c91ff1d73822c47b6af062 to your computer and use it in GitHub Desktop.

Select an option

Save ArtemFedorchuk/d3e5cec489c91ff1d73822c47b6af062 to your computer and use it in GitHub Desktop.
калькулятор
<script>
function myFunction() {
var grn = 'ГРН',
number = prompt('Введите количество гривен'),
procent = prompt('Введите процент, который нужно узнать от количества гривен'),
result = number /100 * procent;
number += grn,
procent += '%',
result = 'от ' +number+ '. ' +procent+ ' составляет = ' +result+ 'ГРН';
alert(result);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment