function-with-arguments.js 56 B

1234
  1. function foo(a, b) {
  2. return a + b;
  3. }
  4. foo(1, 2 + 3);