1 2 3 4 5 6 7 8
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
1 2 3 4 5
Object.extend(String, { hello: function(){ document.write('hello world'); } });
This is simply to test out the Javascript colors :-D