JSFiddle - React, Tailwind, and code Playground

by Viet27th

JavaScript

let a = (va1 = 1, va2) => {
	console.log(va1,va2)
}
a(null, 2)