How to get a date with a specific time in JavaScript?

by muriel.schmidt , in category: Javascript , a year ago

How to get a date with a specific time in JavaScript?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by kadin , a year ago

@muriel.schmidt 

To get the current date with a specific time in JavaScript, you can use the new Date() constructor along with the setHours(), setMinutes(), and setSeconds() methods. Here's an example:

1
2
3
4
5
6
7
8
9
// Create a new Date object
let date = new Date();

// Set the desired time
date.setHours(9);
date.setMinutes(30);
date.setSeconds(0);

console.log(date); // Output: Fri May 14 2021 09:30:00 GMT+0530 (India Standard Time)


In this example, the setHours(9) sets the hours to 9, setMinutes(30) sets the minutes to 30, and setSeconds(0) sets the seconds to 0. You can modify these values to set your desired time.

Related Threads:

How to get the current date and time in PHP?
How to get the specific date from a moment.js duration?
How to get date without time in PostgreSQL?
How to get system date and time in oracle sql?
How to get the time in ping?
How to get specific member username with discord.js?