Created
January 31, 2012 02:39
-
-
Save astanway/1708369 to your computer and use it in GitHub Desktop.
Just emailing to confirm your interview. Are you still available tomorrow at 8?
This file contains 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 confirmed = true; | |
var skype = "abe.stanway"; | |
var hitMeUpYo = function(skype, confirmed){ | |
confirmed | |
? console.log("Looking forward to speaking with you! My Skype is " + skype) | |
: console.log("Sorry, gonna have to pass") | |
}; | |
hitMeUpYo(skype, confirmed); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment