전개구문

by youknowimean

JavaScript

const myFun2 = (...ars) => {
	console.log(ars);
}

myFun2(1,2,3,4);