Guest User

Untitled

a guest
May 28th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import { Component } from '@angular/core';
  2. import * as moment from 'moment';
  3.  
  4. let myMoment: moment.Moment = moment("someDate");
  5.  
  6. let now = moment("2014/04/25");
  7. let date = now.format('LLLL');
  8.  
  9. @Component({
  10. selector: 'app-root',
  11. templateUrl: './app.component.html',
  12. styleUrls: ['./app.component.css']
  13. })
  14. export class AppComponent {
  15. title = 'app';
  16. }
Add Comment
Please, Sign In to add comment