질문1 javaScript prototype 질문 // 프로토타입 테스트window.A = function() {var _tmp = 'hello'; this.x = function() { console.log(_tmp + ' in this(공유)'); }; A.prototype.x = function() { console.log(_tmp + ' in prototype(상속)'); }; this.thisSetTmp = function(_getStr) { _tmp = _getStr; }; A.prototype.protoSetTmp = function(_getStr) { _tmp = _getStr; };};A.prototype.y = function() { console.log('외부에서 prototype 설정 in prototype(상속)'); }; var.. 2014. 5. 29. 이전 1 다음