JSFiddle - React, Tailwind, and code Playground

by Viet27th

JavaScript

let a = (x,y,z,f) => {
	let n = {x,y,z,f};
  
	console.log(x,y,z,f);
}
a(1,2,4)