Để có được năm hiện tại bằng JavaScript, hãy sử dụng phương thức getFullYear ().
Ví dụ
Bạn có thể thử chạy mã sau để in năm hiện tại -
<!DOCTYPE html> <html> <body> <p>Click below to get the current year:</p> <button onclick="display()">Display Year</button> <p id="test"></p> <script> function display() { var date = new Date(); var res = date.getFullYear(); document.getElementById("test").innerHTML = res; } </script> </body> </html>