Skip to content

Instantly share code, notes, and snippets.

@gilomen2
Created May 9, 2016 19:31
Show Gist options
  • Save gilomen2/59e4bb9a32e2a5b5579e29f717d2f898 to your computer and use it in GitHub Desktop.
Save gilomen2/59e4bb9a32e2a5b5579e29f717d2f898 to your computer and use it in GitHub Desktop.
function _if(bool, func1, func2) {
if(bool === true){
return func1();
} else {
return func2();
}
};
//Test
Test.assertEquals(_if(true, function(){console.log("True")}, function(){console.log("false")}), 'True')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment