function sayHello(nameOfPerson, age){
console.log("hi my name is " + nameOfPerson + " and I'm " + age);
첫 번째 인자로 어떤 데이터가 들어가면
// ()function을 실행
// 실행 버튼을 눌렀지만 아무것도 전달하지 않은 상태
console.log();
sayHello("jamie",26);
sayHello("KIM", 21);
sayHello("LEE", 23);
}
// 인수란 function을 실행하는 동안
// 어떤 정보를 function에게 보낼 수 있는 방법
//