Skip to content

Instantly share code, notes, and snippets.

@hazmatzo
Created April 1, 2016 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hazmatzo/f64c77cc2cc60c011e2050907530fe0f to your computer and use it in GitHub Desktop.
Save hazmatzo/f64c77cc2cc60c011e2050907530fe0f to your computer and use it in GitHub Desktop.
People Function in ES6
function People() {
this.size = 0;
setInterval(() => {
this.size++;
}, 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment