함수는 인수가 한 개가 아닌 여러 개 전달할 수도 있다.
function alertSuccess(month, name) {
alert(month + "월의 당첨자는 " + name + "입니다.");
}
console.log(alertSuccess(3, "김개발"));
//3월의 당첨자는 김개발입니다.
function meetAt(year, month, date) {
if (date) {return year + '/' + month + '/' + date};
if (month) {return year + '년 ' + month + '월'};
if (year) {return year + '년'};
}
console.log(meetAt(2021,9,2))
//2021/9/2