728x90 300x250 SMALL 함수2 함수정의 방법 4가지 1. function 키워드 이용하기 function 함수이름([매개변수1,...]){ [return 반환값] } 함수이름 (매개변수 값, ...) function hello(name){ document.write(name+"님 환영합니다."); } hello("moo"); 2. 함수리터럴 이용하기 var 변수이름 = function([매개변수1,...]){ [return 반환값] } 변수이름(매개변수 값,...); var hello=function(name){ document.write(name+"님 환영합니다."); } hello("moo"); 3. Function 객체를 이용하는 방법 var 함수이름 = new Function([매개변수1...], 함수본체); 함수이름(매개변수 값, . . .); .. 2019. 7. 21. 변수와 함수와의 관계 01_변수에 함수라는 데이터를 넣기 function hello(name){ document.write(name+"님 환영합니다."); } hello("홍길동"); var func = hello; func("홍길동"); func란 변수에 함수를 넣으면 변수 값으로 함수를 호출할수 있다. 02_매개변수값을 함수로 사용하기 function hello1(){ alert("hello."); } function hello2(){ alert("안녕하세요."); } function execute(func){ func(); } execute(hello1); execute(hello2); execute함수를 호출할때 hello1과 hello2함수를 차례로 매개변수 값으로 넣어주면 execute 함수가 매개변수를 받아서 해.. 2019. 6. 27. 이전 1 다음 728x90 반응형 LIST