Skip to content

Instantly share code, notes, and snippets.

@varavut
Last active August 29, 2015 14:27
Show Gist options
  • Save varavut/57c7c37de7b451460ef7 to your computer and use it in GitHub Desktop.
Save varavut/57c7c37de7b451460ef7 to your computer and use it in GitHub Desktop.
function foo1(n){
a = n*5;
return g(a);
}
function foo2(n){
if(n == 10)
return f(5);
return g(n*5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment