Skip to content

Instantly share code, notes, and snippets.

@johnschimmel
Created April 25, 2012 20:59
Show Gist options
  • Save johnschimmel/2493303 to your computer and use it in GitHub Desktop.
Save johnschimmel/2493303 to your computer and use it in GitHub Desktop.
track your time or get detention
var doSomethingForClient = function() {
// do something here
trackTime();
}
var trackTime = function() {
console.log("tracking my time!");
trackTime();
}
doSomethingForClient();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment