-
Notifications
You must be signed in to change notification settings - Fork 0
/
dias.html
46 lines (38 loc) · 1.39 KB
/
dias.html
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
40
41
42
43
44
45
46
<html>
<head>
<title>dias</title>
<script type="text/javascript">
var fecha_llegada_a_chile = new Date("10/19/2016");
var fecha_mudanza_nuevo_departamento = new Date("5/1/2017");
var fecha_maraton_de_programacion = new Date("11/26/2016");
var fecha_de_inicio_2brains = new Date("11/2/2016");
var hoy = new Date(Dia_de_hoy());
document.write("dias en chile :" + Diferencia_En_Dias(fecha_llegada_a_chile, hoy) + "<br />");
document.write("dias desde que inicie en 2 brains :" + Diferencia_En_Dias(hoy, fecha_de_inicio_2brains) + "<br />");
document.write("dias para el maraton de programación :" + Diferencia_En_Dias(hoy, fecha_maraton_de_programacion) + "<br />");
document.write("dias para mudarme :" + Diferencia_En_Dias(hoy, fecha_mudanza_nuevo_departamento) + "<br />");
function Diferencia_En_Dias(diaInicial, diaFinal)
{
var timeDiff = Math.abs(diaFinal.getTime() - diaInicial.getTime());
return Math.ceil(timeDiff / (1000 * 3600 * 24));
}
function Dia_de_hoy()
{
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
}
if(mm<10) {
mm='0'+mm
}
//today = mm+'/'+dd+'/'+yyyy;
return mm+'/'+dd+'/'+yyyy;
}
</script>
</head>
<body>
</body>
</html>