Código Javascript
:
Ver originalvar num1 = document.getElementById('num1').value;
var num2 = document.getElementById('num2').value;
var num2por5 = num2 * 5;
var num2por10 = num2 * 10;
var num2por15 = num2 * 15;
var resultado = document.getElementById('resultado');
if (num1 <= num2por5){
resultado.value = num1 * 1.20;
}
else if (num1 > num2por5 && br <= num2por10){
resultado.value = num1 * 1.30;
}
else if (num1 > num2por10 && br <= num2por15){
resultado.value = num1 * 1.40;
}
function modificar(valor, operacion) {
if(operacion == "+") resultado.value += valor;
if(operacion == "-") resultado.value -= valor;
if(operacion == "*") resultado.value *= valor;
if(operacion == "/") resultado.value /= valor;
// etc
}
modificar(3, "+");