403e57e2be130d2218f992b86dfa8260

This is simply to test out the Javascript colors :-D

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 !

Bfec5f7d1a4aaafc5a2451be8c42d26a

macournoyer

September 17, 2007, September 17, 2007 13:57, permalink

1 rating. Login to rate!

You're missing a }, line 8 :P

1
2
3
4
5
Object.extend(String, {
  hello: function(){
    document.write('hello world');
  }
});

Your refactoring





Format Copy from initial code

or Cancel