Day of the current month

Let's get a date object containing 25th of the current month of the current year:

let now = new Date(); let date = new Date(now.getFullYear(), now.getMonth(), 25);

Determine what day of the week will be 1st of the current month.

enru