JSFiddle - React, Tailwind, and code Playground

by dougiei

JavaScript

function test2(){
console.log("test2 ",arguments[0]);
}

function test() {
    console.log(arguments);
    var a = arguments[0];
    var b = arguments[1];
    var c = arguments[2];

    console.log(a);
    console.log(b);
    console.log(c);
    
    test2(arguments)
}

test("a", "b", "c");