simple-parse.js 79 B

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