Skip to content

Instantly share code, notes, and snippets.

@jredville
Created June 1, 2012 21:54
Show Gist options
  • Save jredville/2855368 to your computer and use it in GitHub Desktop.
Save jredville/2855368 to your computer and use it in GitHub Desktop.
Idea for a JS interview question... in progress
//Define counter
var counter = ____;
var counter2 = ____;
counter.value(); // 0
counter.increment();
counter.value(); //1
counter2.value(); //0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment