Week 4 — 9 / 18

Lab 4-1: Logging events to the Console

https://github.com/UChicagoWebDev/lab-4

<script>
var i =0;
function increment() {
  i = i+1;
  console.log(i);
}
</script>