In this app, we want to make a very basic stopwatch, we want to count up in seconds when we click on start.
And we also want to be able to stop this timer. The trick to implementing this is realizing that we have a set interval function set interval takes a callback, this enables us to count up, t...