일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- JDOM
- appspresso
- node.js
- swingx
- oracle
- MFC
- Ajax
- Google Map
- PLSQL
- dock
- GPS
- tomcat
- phonegap
- MySQL
- jQuery
- Struts
- Eclipse
- rowspan
- sencha touch
- Android
- JSON
- PHP
- 가우스
- ibsheet
- WebLogic
- 전자정부프레임워크
- 선택적조인
- iBATIS
- Spring
- jsr 296
Archives
- Today
- Total
Where The Streets Have No Name
Dynamically Generated Methods 본문
객체를 생성할때 파라미터를 object로 넘김
function User( properties ) {
for ( var i in properties ) { (function(){
this[ "get" + i ] = function() {
return properties[i];
};
this[ "set" + i ] = function(val) {
properties[i] = val;
};
})(); }
}
var user = new User({
name: "Bob",
age: 44
});