Answers for "anularjs date pipe example"

2

show timestamp as yyyy mm dd html angular

{{date  | date:'yyyy-MM-dd'}}
Posted by: Guest on February-17-2020
0

Angularjs datetime

var myDate = new Date();
myDate = $filter('date')(myDate , "YYYY-MM-DDThh:mm"); 
$scope.form.date.push(myDate);
Posted by: Guest on July-05-2020

Browse Popular Code Answers by Language