diff --git a/Base/home/anon/js/function-with-arguments.js b/Base/home/anon/js/function-with-arguments.js new file mode 100644 index 0000000000..f87b61162c --- /dev/null +++ b/Base/home/anon/js/function-with-arguments.js @@ -0,0 +1,4 @@ +function foo(a, b) { + return a + b; +} +foo(1, 2 + 3);