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 worked for me
var dateToFormat = "2018-05-16 12:57:13"; //TIMESTAMP moment(dateToFormat).format("DD/MM/YYYY"); // you get "16/05/2018"