336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
JavaScript 에서 Java 처럼 객체 활용을 하고 싶다면, 이렇게 처리하면 좋다.
var Data = function Class() {};
Data.prototype = {
equals: function(obj) {
for(var p in this) {
if(this[p] != data[p]) return false;
}
return true;
},
toString: function() {
var result = "";
for(var p in this) {
if(typeof(this[p])!="function") {
result += this[p] + ",";
}
}
result = result.substr(0,result.length-1);
return result;
},
clone: function() {
var clone = new this.constructor();
for (var property in this)
clone[property] = this[property];
return clone;
}
};
'Programming' 카테고리의 다른 글
MAC 에서 Postgresql 설치하기 (0) | 2013.05.03 |
---|---|
ie10에서 Active X문제로 브라우저 비트 분기처리를 해야할 경우 제대로 안된다. (0) | 2013.04.29 |
Ubuntu에서 node.js 의 express 사용하여 helloworld 출력하기 (0) | 2013.04.18 |
myBatis MSSQL 입력(insert) 후 자동증가 키(key)값 가지고 오기 (0) | 2013.01.21 |
Socket 통신할 때 메시지가 날아가지 않을 때 (0) | 2013.01.17 |
Javascript Object is not a constructor (0) | 2012.04.20 |
Subversion 에서 can't open file db txn-current-lock 오류 발생 시 처리 방법 (0) | 2012.04.09 |
Getting Started With Daum Map (0) | 2012.04.02 |
서버 접속 에러(localhost 접속 O, 실IP 접속 X) (0) | 2012.03.22 |
여러 줄의 내용을 한 줄로 합치자!! : MSSQL (0) | 2010.09.05 |