JSFiddle - React, Tailwind, and code Playground

by Viet27th

JavaScript

let fu = (a,b=1,c=2,d) => {
console.log(a,b,c,d)
}
fu(9,27)