String.prototype.hello = function(){
alert('hello world!');
}
Object.extend(String, {
hello: function(){
document.write('hello world');
});
Refactorings
No refactoring yet !
macournoyer
September 17, 2007, September 17, 2007 13:57, permalink
You're missing a }, line 8 :P
Object.extend(String, {
hello: function(){
document.write('hello world');
}
});
This is simply to test out the Javascript colors :-D