JSFiddle - React, Tailwind, and code Playground
by nickxbs
JavaScript
function test(a,b,c){
console.log(arguments)
}
test(1,2,3);
test();
test(1,2,3,4);
by nickxbs
function test(a,b,c){
console.log(arguments)
}
test(1,2,3);
test();
test(1,2,3,4);