Skip to content

Instantly share code, notes, and snippets.

View ianjennings's full-sized avatar

Ian Jennings ianjennings

View GitHub Profile
@ianjennings
ianjennings / gist:2017794
Created March 11, 2012 19:38 — forked from astanway/gist:1708369
Just emailing to confirm your interview. Are you still available tomorrow at 8?
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);