web-dev-qa-db-fra.com

Comment obtenir l'année en cours en utilisant TypeScript dans angular6

Comment obtenir l'année en cours en utilisant TypeScript dans angular6 

currentYear:Date;
this.currentYear=new Date("YYYY");
alert(this.currentYear);

Il montre une date invalide

2
Revathi Vijay

En javascript, nous pouvons obtenir l’objet year from date en utilisant getFullYear().

currentYear: Date;
ngOnInit() {
  this.currentYear = new Date("2017");
  console.log(this.currentYear.getFullYear());
}

Reportez-vous à cette page pour tous les objets de date méthodes

0
RAJA

À la section d'importation,

import * as moment from 'moment'

Au ngOnInit,

ngOnInit(){
this.date = moment(new Date()).format('YYYY');
console.log(moment(new Date()).format('YYYY'));
}
0
Kenyfrank