How can i change the current date to this format(DD/MM/YYYY) using moment.js?
I have tried below code.
$scope.SearchDate = moment(new Date(), \"DD/MM/YYY
This actually worked for me:
moment(mydate).format('L');