Last active
November 10, 2019 05:25
-
-
Save BubuInc/96f47b651cf815a7d17f to your computer and use it in GitHub Desktop.
date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| var date = new Date(); | |
| var year = date.getYear(); | |
| if (year < 1900) year += 1900; | |
| var day = date.getDay(); | |
| var month = date.getMonth(); | |
| var daym = date.getDate(); | |
| var days = ["Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado"]; | |
| var months = ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"]; | |
| $('#fechaNavbar').text(days[day] + " " + daym + " de " + months[month] + " de " + year); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment