Filter for change Date Time format (MM-dd-yyyy HH:mm) in Angular Js
mm-dd-yyyy HH:MM
date formats
angular js
Angular.js has a built-in date filter. But as per our requirements we can use filers to change date formats
angular.module('surgi'). filter('ChangeTimeFormat', function($filter) { return function(input) { if(input == null){ return ""; } var _date = $filter('date')(new Date(input), 'HH:mm'); return _date; }; });
This filter load in your js file. This filter calls from html. Here is the sample code to call the filter
<p>{{dt | ChangeTimeFormat}}<p>
You might also like:
How to submit form using javascript or jquery.16-04-2017 javascript jquery submit form |
How to use http-post request in node js14-03-2017 http-post module node js |
Remove last two characters from given string06-03-2017 substring javascript remove |
How to find Angular Errors06-03-2017 errors angularjs exceptionHandler |
Sample Validations in javascript22-02-2017 validations javascript |