Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created April 16, 2015 04:06
Show Gist options
  • Select an option

  • Save chikoski/b8086e1085b01cdfc9db to your computer and use it in GitHub Desktop.

Select an option

Save chikoski/b8086e1085b01cdfc9db to your computer and use it in GitHub Desktop.
function addTwo(a){
b = a + 1;
return a + 1;
}
c = addTwo(1);
/*
2
*/
d = c + b;
/*
4
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment