function dayToDate(year: number, day : number) {
return new Date(year, 0, day);
}
console.log(dayToDate(2022, 17).toDateString());
console.log(dayToDate(2022, 33).toDateString());
console.log(dayToDate(2022, 81).toDateString());
/*
run:
"Mon Jan 17 2022"
"Wed Feb 02 2022"
"Tue Mar 22 2022"
*/