Dia41
This commit is contained in:
parent
387b4dc318
commit
958814b055
|
|
@ -194,14 +194,8 @@
|
|||
setValue('resultado', mensaje);
|
||||
}
|
||||
|
||||
function difFechasDias(fechaIni, fechaFin) {
|
||||
const dias = Math.ceil((new Date(fechaFin) - new Date(fechaIni)) / (1000 * 60 * 60 * 24));
|
||||
return dias;
|
||||
}
|
||||
|
||||
function limpiarForm() {
|
||||
document.getElementById("formAlquiler").reset();
|
||||
}
|
||||
const difFechasDias = (fechaIni, fechaFin) => Math.ceil((new Date(fechaFin) - new Date(fechaIni)) / (1000 * 60 * 60 * 24));
|
||||
const limpiarForm = ()=> document.getElementById("formAlquiler").reset();
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user