Skip to content

Instantly share code, notes, and snippets.

@ArtemFedorchuk
Created September 9, 2018 11:32
Show Gist options
  • Save ArtemFedorchuk/782537f0b557b0390fbdb8f2a9a38bde to your computer and use it in GitHub Desktop.
Save ArtemFedorchuk/782537f0b557b0390fbdb8f2a9a38bde 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