Page Elements

1 min read

Heading 1

Heading 2

Heading 3

The soft hum of the streetlights filled the empty avenue as a thin layer of fog curled around the parked cars. Somewhere in the distance, a radio crackled with a half-forgotten song, carried by the night air. A lone passerby tightened their coat against the chill, glancing at the faint reflection of neon signs rippling in puddles. It felt like the world had paused between breaths, waiting for something—perhaps a whisper, perhaps the dawn—to stir it back into motion.




  1. Numbered List
    1. Numbered Sub-list

Heading One Later in the page


Toggle

Toggle content


Call out


Blockquote


Table Item Table Item
Table Row Table Row

Image Alt Text
// get the current date
const today = new Date();

// calculate the number of days until next Tuesday (2 represents Tuesday, with Sunday being 0 and Saturday being 6)
const daysUntilTuesday = (2 - today.getDay() + 7) % 7;

// create a new date object with the next Tuesday date
const nextTuesday = new Date(today.getFullYear(), today.getMonth(), today.getDate() + daysUntilTuesday);

// print the next Tuesday date in YYYY-MM-DD format
console.log(nextTuesday.toISOString().slice(0, 10));