I need to update a few hundred static HTML pages that have the copyright date hard coded in the footer. I want to replace it with some JavaScript that will automatically update each year.
Currently I’m using:
<script type="text/javascript">var year = new Date();document.write(year.getFullYear());</script>
Is this as short as it gets?