simple-variables.js 85 B

1234567
  1. c = 1;
  2. function foo() {
  3. var a = 5;
  4. var b = 7;
  5. return a + b + c;
  6. }
  7. foo();