Hello,
I'd like to create a code that does a multiplication of what the Client inserts into the Input text field.
This multiplication would be ...
Valor de taxa = 0.8;
Valor do Cliente = "O valor inserido"
Valor do Cliente * Valor de taxa.
I would like it to appear in text ... How do I do it?
JAVASCRIPT
function calculate() {
var coins = document.getElementById('number').value;
var rate = 0.8;
var total = coins * rate;
}