This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
let text; switch (new Date().getDay()) { case 6: text = "Today is Saturday"; break; case 0: text = "Today is Sunday"; break; default: text = "Are you looking forward to the Weekend?"; } document.getElementById("demo").innerHTML = text;
If
is not the last case in the switch block, remember to end the default case with a break.