Back

Version 14

7/20/2023
const quote_of_the_day = (async () => {
const [qod] = await @stevekrouse.fetchJSON(
"https://zenquotes.io/api/today",
);
const formattedQuote;
`"${qod.q}"
${qod.a}`;
const today = new Date().getDate();
// console.email(formattedQuote)
return today;
})();
Updated: February 16, 2024