I have a date that is being being returned in the format:
2016-07-25 10:50:14
I've created a variable that gets the data and strips out the dashes, spaces and colons with:
var newDate = $scope.details["Created At"].replace(/[^a-z0-9\s]/gi, '').replace(/[_\s]/g, '');
Now the with console.log(date); the date is being returned as:
20160725105014
I guess my main question is how can I take that variable data and add it back into the controller $scope so that I can call it into my html and use angular date formatting such as:
{{ details.newDate | date:'MM/dd/yyyy @ h:mma' }}
Thanks for any help.