From 9f3f0d9983590864f5b64147329223b46c55e854 Mon Sep 17 00:00:00 2001 From: howar6hill Date: Thu, 12 Mar 2020 19:43:22 +0800 Subject: LibJS: Add test for function with arguments --- Base/home/anon/js/function-with-arguments.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Base/home/anon/js/function-with-arguments.js 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); -- cgit v1.2.3