Every line of 'current year javascript' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
96 public getCurrentDate(): string { 97 /* Return current year(string) to display in calendar header. */ 98 return this.state.date.year().toString(); 99 }
7 showCurrentYear() { 8 return new Date().getFullYear(); 9 }