함수1 function 에 대하여 //function 에 대하여 //함수 함수명(매개변수) { function sayHello(name) { console.log('Hello, ${name}'); } sayHello('Mike'); //매개변수가 없는 경우 function showError(){ alert('에러가 발생했습니다. 다시 시도해주세요'); } showError(); //매개변수가 있는 경우 function sayHello(name){ const msg =''Hello, ${name}; console.log(msg); } sayHello('michel'); 2022. 2. 11. 이전 1 다음