Answers for "basic year javascript"

1

javascript code for year in html

<script type="text/javascript">
  document.write(new Date().getFullYear());
</script>
Posted by: Guest on October-04-2020
8

how to get the year in javascript

new Date().getFullYear(); // This will get you the current year
Posted by: Guest on April-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language