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 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); |