Skip to content

Instantly share code, notes, and snippets.

@92arpitgoyal
Created April 19, 2016 17:07
Show Gist options
  • Select an option

  • Save 92arpitgoyal/8c4c99f043659b8a32f7fcfecb62337a to your computer and use it in GitHub Desktop.

Select an option

Save 92arpitgoyal/8c4c99f043659b8a32f7fcfecb62337a to your computer and use it in GitHub Desktop.
if(a > b){
return a;
}else{
return b;
}
return (a > b) ? a : b;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment