Skip to content

Instantly share code, notes, and snippets.

@nemanjan00
Created February 23, 2017 20:40
Show Gist options
  • Save nemanjan00/00635e0b6ed9bc6bd596a7f7fe4ae486 to your computer and use it in GitHub Desktop.
Save nemanjan00/00635e0b6ed9bc6bd596a7f7fe4ae486 to your computer and use it in GitHub Desktop.
var fun = function(a, b){
var fun1;
var fun2 = function(){
fun1 = function(a, b){
return a + b - a * 2 - b + a;
}
}
fun2();
return a + b + fun1(a, b);
}
var b = fun(5, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment