code_ugly.js 92 B

1234
  1. function foo() { var a=1; var b=2; bar(a, b); }
  2. function bar(c, d) { return c - d; }
  3. foo();