-
Notifications
You must be signed in to change notification settings - Fork 0
/
descuentos.js
39 lines (24 loc) · 994 Bytes
/
descuentos.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const precioOriginal = 120;
const descuento = 18;
function calcularPrecioConDescuento(precio , descuento){
const inputCupon = document.getElementById("cupons");
const cupon = inputCupon.value;
const porcentajeDelPrecioConDescuento = 100 - descuento - cupon;
const precioConDescuento = (precio * porcentajeDelPrecioConDescuento /100);
return precioConDescuento;
}
// console.log({
// precioOriginal,
// descuento,
// porcentajeDelPrecioConDescuento,
// precioConDescuento,
// });
function priceDiscount(){
const inputPrice = document.getElementById("inputPrice");
const priceValue = inputPrice.value;
const inputDiscount = document.getElementById("inputDiscount");
const discountValue = inputDiscount.value;
const precioConDescuento = calcularPrecioConDescuento(priceValue , discountValue);
const reultP = document.getElementById("result");
reultP.innerText = "El precio que pagaras es: " + precioConDescuento;
}