Let's get a date object containing 25th of the current month of the current year:
25
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.
1