Skip to content

Instantly share code, notes, and snippets.

@jackfranklin
Created February 7, 2013 15:46
Show Gist options
  • Save jackfranklin/4731766 to your computer and use it in GitHub Desktop.
Save jackfranklin/4731766 to your computer and use it in GitHub Desktop.
/***
*
* I want to execute someFunc() if the variable x is greater than 5
* how would you rewrite the below to NOT use a conditional? (EG no "if" used)
*
* **/
if(x > 5) {
someFunc():
}
@willh
Copy link

willh commented Feb 8, 2013

HEY JACK WHAT ABOUT x > 5 && someFunc();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment