• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1let x = 0;
2function heartbeat() {
3  ++x;
4}
5setInterval(heartbeat, 50);
6