function dayToDate(year, day) {
return new Date(year, 0, day);
}
console.log(dayToDate(2022, 17).toDateString());
console.log(dayToDate(2022, 33).toDateString());
console.log(dayToDate(2022, 71).toDateString());
/*
run:
Mon Jan 17 2022
Wed Feb 02 2022
Sat Mar 12 2022
*/