JSFiddle - React, Tailwind, and code Playground

by Viet27th

JavaScript

let a = (x,y=1,z=2,d) => {
console.log(x,y,z,d)
}
a(9,27)