Skip to content

Instantly share code, notes, and snippets.

@dawnerd
Created April 20, 2012 21:43
Show Gist options
  • Save dawnerd/2432081 to your computer and use it in GitHub Desktop.
Save dawnerd/2432081 to your computer and use it in GitHub Desktop.
Simple If
function simpleIf(fun_if, fun_else) {
if(!fun_if()) fun_else();
}
//usage
simpleIf(function(){
console.log('doing stuff because Im true!');
return true;
}, function(){
console.log('some more stuff :(');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment