JSFiddle - React, Tailwind, and code Playground
by blowsie
HTML
<div ng-app="Test">
<div ng-controller="MainCtrl">
<input data-ng-model="date"/>
<br/>
{{date | date:'medium'}}
</div>
</div>
JavaScript
var test = angular.module('Test',[]);
test.controller('MainCtrl', function ($scope, $filter) {
// "Tue Oct 15 2013 11:35:49 GMT+0100 (GMT Daylight Time)"
$scope.date = "/Date(-62135596800000-0000)/"
});