Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const options = {
- year: 'numeric',
- month: 'long',
- day: 'numeric',
- hour: 'numeric',
- minute: 'numeric',
- hour12: true
- };
- const now = new Date();
- const formattedDate = now.toLocaleString('en-US', options);
- console.log(formattedDate); // Example output: "September 21, 2024, 12:30 PM"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement