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