Getting a current year in Angular App
In this tutorial, we are going to learn about how to get a current year in the angular app using the new Date() constructor.
Using new Date() constructor
The new Date() constructor contains a getFullYear() method, which returns the current year in four-digit (2020) format according to the user local time.
Here is an example, that renders the current year in the footer component of our angular app.
import { Component} from '@angular/core';
@Component({
selector: 'my-footer',
templateUrl: './footer.component.html',
styleUrls: [ './footer.component.css' ]
})
export class FooterComponent {
currentYear = new Date().getFullYear(); // 2020}<footer>
<p> CopyRight {{currentYear}} </p></footer>There is also other method called getUTCFullYear() which returns the current year according to the universal time instead of user local time.
import { Component} from '@angular/core';
@Component({
selector: 'my-footer',
templateUrl: './footer.component.html',
styleUrls: [ './footer.component.css' ]
})
export class FooterComponent {
currentYear = new Date().getUTCFullYear(); // 2020}<footer>
<p> CopyRight {{currentYear}} </p></footer>

