JSFiddle - React, Tailwind, and code Playground

by giddygeek

JavaScript

function hello(msg1,msg2)
{
    alert("This function has " + arguments.length + " arguments");
    alert("The first argument is :" + arguments[0]);
}
hello("hey","there");