Proposal to add a dayOfWeek() function to P5js

const dayOfWeekDigit = new Date().getDay();

function dayOfWeek() { // : int, : 0 to 6, 0 is Sunday
return dayOfWeekDigit;
}

Hello @EricRogerGarcia,

Thanks for sharing your idea! For p5.js feature requests, the best place is to open a GitHub issue so the team can review and track it there.

Raphaƫl