How to get Current Date and Time in AngularJS?

How to get Current Date and Time in AngularJS?

In this post we will give you information about How to get Current Date and Time in AngularJS?. Hear we will give you detail about How to get Current Date and Time in AngularJS?And how to use it also give you demo for it if it is necessary.

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:

Also see:AngularJS Drag and Drop Table Rows Example with Demo

02/07/2019

07/02/2019

02/07/2019 09:23:47

I hope it can help you…

Hope this code and post will helped you for implement How to get Current Date and Time in AngularJS?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

8  +  2  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US