Created
April 25, 2012 20:59
-
-
Save johnschimmel/2493303 to your computer and use it in GitHub Desktop.
track your time or get detention
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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