1. 생성

 

 

 

다음과 같은 세 가지 방법으로 함수를 선언할 수 있다.

 

 

 function aaa(str) {
   document.write(str);
  }

 var bbb = function(str) {
   document.write(str);
  }

 var ccc = new Function('str', 'document.write(str)');

 

 

 

 

 

추천하지는 않지만,

다음과 같은 방법으로 함수를 선언해도 무리 없이 출력된다.

 

+ Recent posts