JavaScript Snippets

Welcome to this Article.

Feel free to copy and paste. That is the ultimate purpose.


Clock (doesn't update constantly)

<script>
  const CurrentTime = new Date();
  document.write("<br>" + CurrentTime);
</script>

Thing 2