1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-06 18:27:34 +00:00

LibJS: Add test for function with arguments

This commit is contained in:
howar6hill 2020-03-12 19:43:22 +08:00 committed by Andreas Kling
parent f405cb6a77
commit 9f3f0d9983

View file

@ -0,0 +1,4 @@
function foo(a, b) {
return a + b;
}
foo(1, 2 + 3);