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 job = false, // may this come true | |
cash = true, // any savings? | |
passionate = true, // loves what you do? | |
knowledgable = false; // knows your stuff well? | |
var action = function(){ | |
if (job) { // found a job yet? | |
console.log("Phew. That was close."); | |
return; | |
} |