$w.onReady(function () { // Obtenemos la fecha actual const hoy = new Date(); // Opción A: Nombre completo del día en español (ej: "lunes") const opciones = { weekday: 'long' }; const nombreDia = hoy.toLocaleDateString('es-ES', opciones); // Asignamos el texto al elemento $w("#diaTexto").text = "Hoy es " + nombreDia; });
top of page

Todas las respuestas en un sólo lugar

Preguntas Frecuentes

bottom of page