JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller="Ctrl">
{{date | date:'yyyy-MM-dd'}}<br/>
</div>
JavaScript
function Ctrl($scope)
{
$scope.date = new Date();
}
<div ng-app ng-controller="Ctrl">
{{date | date:'yyyy-MM-dd'}}<br/>
</div>
function Ctrl($scope)
{
$scope.date = new Date();
}