Skip to content

Commit

Permalink
change variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
weddleben committed Jul 31, 2023
1 parent fc5bf94 commit 7354615
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ <h4>
<footer style="text-align: center;" id="copyright"></footer>

<script>
var a = new Date()
var b = a.getFullYear()
document.getElementById('copyright').innerHTML = '© Ben Weddle ' + b
const date = new Date()
const year = date.getFullYear()
document.getElementById('copyright').innerHTML = '© Ben Weddle ' + year
</script>

</body>
Expand Down

0 comments on commit 7354615

Please sign in to comment.