<strong>js 정적 메서드</strong> <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="36970" class="copybut" id="copybut36970" onclick="doCopy('code36970')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code36970"> <br> function foo( ){} // 클래스 선언 <br>foo.method = function(){} // 메서드 본문 <br> </div> <br> 용도: foo.method() <br><br><strong>js 인스턴스 메소드 </strong> <br>function foo(){ // 클래스 선언 <br>this.method = function(){ // 메소드 본문 <br><br>} <br>} <br>사용: var f = new foo();