How to remove time from date in JavaScript

1 Answer

0 votes
function removeTime(date = new Date()) {
  return new Date(
    date.getFullYear(),
    date.getMonth(),
    date.getDate()
  );
}

console.log(removeTime(new Date(2022, 2, 14, 7, 32, 16)).toString());
console.log((new Date(2022, 2, 14, 7, 32, 16)).toString());




/*
run:

"Mon Mar 14 2022 00:00:00 GMT+0200 (Israel Standard Time)"
"Mon Mar 14 2022 07:32:16 GMT+0200 (Israel Standard Time)"

*/

 



answered Mar 14, 2022 by avibootz
edited Mar 14, 2022 by avibootz
...