JSFiddle - React, Tailwind, and code Playground

JavaScript

function myfunction(a, b, c, d, e) {
    console.log(arguments);
    return a + b;    
}
document.write(myfunction(1,2));