is there any way to convert formatted date to original date string in angular JS?
Here is the code that I have tried :
$scope.sprintListData.sprintDate.startSprintDate = $filter('date')($scope.sprintListData.sprintDate.startSprintDate, 'dd/MM/yyyy');
now i want to convert dd/MM/yyyy to original date string.
i tried new Date($scope.sprintListData.sprintDate.startSprintDate)