How to Get Current Date and Time in AngularJS?
In this example, we will learn how to get current date time in angular js application. we can get current date and time with specific format like yyyy-mm-dd, dd/mm/yyyy, mm-dd-yyyy hh:mm:ss etc. we will display current date and time using angular js ng-bind directive.
You can see bellow example we use Date object for getting current date and time. So you can see bellow syntax, example, full example and also output bellow. let's see it and i hope it will help you.
Syntax:
{{ 'Date Object' | date: 'Date Format' }}
Example:
{{ CurrentDate | date: 'dd/MM/yyyy' }}
index.html:
<!doctype html>
<html>
<head>
<title>How to get Current Date and Time in AngularJS? - ItSolutionStuff.com</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
</head>
<body ng-app='myapp'>
<div ng-controller="myCtrl">
<p>{{ CurrentDate | date:'dd/MM/yyyy'}}</p>
<p>{{ CurrentDate | date:'MM/dd/yyyy'}}</p>
<p>{{ CurrentDate | date:'dd/MM/yyyy HH:mm:ss'}}</p>
</div>
</body>
<script type="text/javascript">
var app = angular.module('myapp', []);
app.controller('myCtrl', ['$scope', '$http', function ($scope, $http) {
$scope.CurrentDate = new Date();
}]);
</script>
</html>
Output:
02/07/2019
07/02/2019
02/07/2019 09:23:47
I hope it can help you...