I have this date
Thu Feb 24 2022 15:00:00 GMT+0400 (Russia Standard Time)
Can I change the 15:00:00 time to 00:00:00 for example this date must be like this
Thu Feb 24 2022 00:00:00 GMT+0400 (Russia Standard Time)
You could use setUTCHours() :
let date = new Date("Thu Feb 24 2022 15:00:00 GMT+0400");
console.log(date);
date.setUTCHours(0,0,0,0);
console.log(date);