Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm sure I've worded this question wrong, but I don't know how to explain it well...

I have a vague idea I've read somewhere that I can add methods to objects in JavaScript - by which I mean something like:

function Exclaimify(aString)
{ 
    return aString + "!";
}

var greeting = "Hello";
alert(greeting.Exclaimify()) // this shows "Hello!" in an alert box

Is this possible? If so, how do I do it?

Edit:

Thanks to the accepted answer, I am now able to do stuff like:

// Adds .left(n) substring function to string prototype, do you can do this:
// "ControlNumberOne".left(7)   // this returns "Control"
// n is the number of chars to return
String.prototype.left = function(n) {
    if (n <= 0) {
        return "";
    }
    else if (n > this.length) {
        return this;
    }
    else {
        return this.substring(0, n);
    }
}

And then call it like:

// controlId is something like "MagicalBox_52", so to get just "MagicalBox":
var ControlType = controlId.left(10);

Which really cleans up the syntax of my code, which is using a bunch of string functions.

Yay! Thanks.

share|improve this question
Two quick comments: (1) No need for the String(this), you know "this" is a String since you're in a String.prototype function; (2) Don't add anything to Object.prototype or Array.prototype. If you do you can't use "for (var item in array)" syntax any more. – John Kugelman Jul 6 '09 at 2:38
@John Kugelman: Fixed, thanks. – MGOwen Jul 20 '09 at 4:34

2 Answers

up vote 17 down vote accepted

Assign to it just like it's a variable. Then you can use this. Easy!

var obj = {foo: "bar"};

obj.someFunc = function()
{
    return this.foo;
}

That works great... except! Er, except, not on strings, which are immune to this tomfoolery. (They are completely immutable.) However, there's another way, which is to modify the object's "class" and add the method there. And by "class" I really mean "prototype". JavaScript doesn't have classes, it has prototypes. The syntax to modify the String prototype looks like this:

var greeting = "Hello";

String.prototype.Exclaimify = function()
{
    return this + "!";
}

alert(greeting.Exclaimify()) // this shows "Hello!" in an alert box
share|improve this answer
brilliant - exactly what I was after. – MGOwen Jul 6 '09 at 2:26

It sounds like you want to use the technique called monkey patching. That article contains a link to Duck Punching JavaScript - Metaprogramming with Prototype which may help you.

share|improve this answer
Thanks. Your linked articles weren't as concise as the accepted answer, but still spot on. – MGOwen Jul 6 '09 at 2:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.