Hi Friends đź‘‹,
Welcome to Infinitbility ❤️!
Today, we are going to learn How to convert date to mm/dd/yyyy in typescript?, here we will use custom method formatDate()
method to convert date to mm/dd/yyyy
format.
So, first we have to create a function which get date as a parameter and return formated like we want…
Here, we want format date as month/date/year like.
let’s dive in code…
1const formatDate = (date: Date) => {2 function pad(s) { return (s < 10) ? '0' + s : s; }3 var d = new Date(date)4 return [pad(d.getMonth()+1), pad(d.getDate()), d.getFullYear()].join('/')5}67console.log(formatDate(new Date()))
Well, when you run above code, you can able to see date converted in mm/dd/yyyy
format.
For now, let’s check the output.
Output

All the best 👍.
Follow me on Twitter
Join our email list and get notified about new content
No worries, I respect your privacy and I will never abuse your email.
Every week, on Tuesday, you will receive a list of free tutorials I made during the week (I write one every day) and news on other training products I create.