How to convert day of year to date in TypeScript

1 Answer

0 votes
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" 
  
*/

 



answered Mar 1, 2022 by avibootz
...