Published
- 1 min read
how to convert new date to dd/mm/yyyy format in javascript
The solution for this is noted below
how to convert new date to dd/mm/yyyy format in javascript
Solution
var todayDate = new Date().toISOString()
console.log(todayDate)
Try other methods by searching on the site. That is if this doesn’t work