How to set a date hours, minutes and seconds to 0 in TypeScript

1 Answer

0 votes
const date = new Date();

console.log(date.toLocaleString()); 

date.setHours(0, 0, 0);

console.log(date.toLocaleString()); 

   
  
  
/*
run:
  
"15/03/2022, 10:37:06" 
"15/03/2022, 00:00:00"
  
*/

 



answered Mar 15, 2022 by avibootz
...