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 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
7 showCurrentYear() { 8 return new Date().getFullYear(); 9 }