Skip to content

Instantly share code, notes, and snippets.

@iammerrick
Created April 5, 2010 18:32

Revisions

  1. @invalid-email-address Anonymous created this gist Apr 5, 2010.
    42 changes: 42 additions & 0 deletions gistfile1.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,42 @@
    Number.implement({
    toFriendly: function(){
    switch(this.toInt() + 1)
    {
    case 1:
    return "first";
    break;

    case 2:
    return "second";
    break;

    case 3:
    return "third";
    break;

    case 4:
    return "fourth";
    break;

    case 5:
    return "fifth";
    break;

    case 6:
    return "sixth";
    break;

    case 7:
    return "seventh";
    break;

    case 8:
    return "eigth";
    break;

    case 9:
    return "ninth";
    break;
    }
    }
    });