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);