JSFiddle - React, Tailwind, and code Playground

by Viet27th

JavaScript

let a = (x,y,z) => {
console.log(arguments.length)
console.log(x,y,z)
}
let b = () => {

}
a(1,4)