function Person(name, secret) { // public this.name = name; // private var secret = secret; // public methods have access to private members this.setSecret = function(s) { secret = s; } this.getSecret = function() { return secret; } } // Must use getters/setters Person.prototype.spillSecret = function() { alert(this.getSecret()); };
반응형
'lang > node' 카테고리의 다른 글
nodejs 버전 업그레이드 (0) | 2015.11.19 |
---|---|
nodeclipse io.sockets.in 문법에러 (0) | 2015.11.17 |
socket.io 프로토콜 (0) | 2015.11.10 |
javascript, nodjs 쿼리빌더 유틸리티 squel.js (0) | 2015.11.09 |
node.js 프로세스 관리 툴 forever, pm2 (0) | 2015.10.16 |