String.prototype.myComment;
String.prototype.getLength = function(){ return this.length; }
String.prototype.toString = function(){ return "김덕배님의 말 : " + this.valueOf(); }
var o = new String("Hello My Girl");
o.myComment = "This is Object";
alert( o.myComment ); //"This is Object"
alert( o.getLength() ); //13
alert( o ); //"김덕배님의 말 : Hello My Girl"
String.prototype.getLength = function(){ return this.length; }
String.prototype.toString = function(){ return "김덕배님의 말 : " + this.valueOf(); }
var o = new String("Hello My Girl");
o.myComment = "This is Object";
alert( o.myComment ); //"This is Object"
alert( o.getLength() ); //13
alert( o ); //"김덕배님의 말 : Hello My Girl"
2. 위의 소스를 보면 String (o.myComment = "This is Object"; ) 객체를 생성한 후 스트링 객체에 다른 스트링 객체를 넣은 것을 볼 수 있다.
'javascript' 카테고리의 다른 글
자바스크립트 정규표현식 (4) | 2007.11.28 |
---|---|
자바스크립트 성능 향상 팁 (0) | 2007.11.23 |
String Function모음 String을 자바처럼 핸들링해보잣~! (0) | 2007.11.19 |
유용한 자바스크립트 (0) | 2007.11.19 |
javascript의 eval()함수란 무엇인가! (0) | 2007.11.12 |