Skip to content

Instantly share code, notes, and snippets.

@Cygra
Last active April 11, 2019 09:53
Show Gist options
  • Save Cygra/5e04ae3f39b69277b68f061ef3a4604a to your computer and use it in GitHub Desktop.
Save Cygra/5e04ae3f39b69277b68f061ef3a4604a to your computer and use it in GitHub Desktop.
"use strict";
function Clock() {
var _this = this;
this.sec = 0;
setInterval(function () {
_this.sec++;
}, 1000);
}
var newClock = new Clock();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment