javascript 에서 함수 존재 여부 확인참고 [javascript] 한객체에 특정 함수가 존재하는지 여부를 판단해야 할 경우분류 : 컴퓨터/개발 by 이제나 저제나 // instanceof if(! window.parseUri instanceof Function){ $.getScript('/js/parseUri.js'); } // Prototype Object.prototype.hasFunction = function(funcName) { return this && this.funcName && this.funcName instanceof Function; } // new Class var myObject = new myObject() if (myObject.hasFunction("getArea")..