'How to create Google calendar link date in Javascript 2022?
In 2022 the create Google calendar event link looks like this:
https://calendar.google.com/calendar/u/0/r/eventedit?sf=true&output=xml&text=sometext&location=somelocation&details=somedetails&dates=20220418T013000Z/20220416T020000Z
How do you formate such date in Javascript?
const formatDate = (date) => {
???
};
const myDate = new Date();
const myFormattedDate = formatDate(myDate);
console.log(myFormattedDate)
expecting output:
20220418T013000Z
Any nice looking and easy solution (rather than getHours(),getMinutes(),etc.)?
Solution 1:[1]
JS Dates have an inbuilt .toISOString() method which gets the right format, then just remove special characters:
let date = new Date();
let isoDate = date.toISOString()
let formattedDate = isoDate.replace(/[^\w\s]/gi, '');
console.log(formattedDate)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | joshnik |
