I\'m trying to find out how I can display dynamic date and time using moment.js.
Apparently I can\'t figure out to use setInterval properly.
If possible I\'d pre
Put
date = moment(new Date());
inside the update function. Now you're just printing the same date every second ;)