Skip to content

Instantly share code, notes, and snippets.

@st98
Created May 16, 2015 03:15
Show Gist options
  • Save st98/1ca57c740ddd1e72112d to your computer and use it in GitHub Desktop.
Save st98/1ca57c740ddd1e72112d to your computer and use it in GitHub Desktop.
/*
> debug
< function debug(fn) { [Command Line API] }
*/
function f(x) {
return x * 2;
}
function g(x) {
return Math.pow(f(x), 2);
}
debug(f);
g(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment