I wrote this code in javascript:

String.prototype = {
  a : function() {
    alert('a');
  }
};

var s = "s";
s.a();

I expect it alert an a, but it reports:

s.a is not a function

Why?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

You seem to be replacing the entire prototype object for String with your object. I doubt that will even work, let alone be your intention.

The prototype property is not writable, so assignments to that property silently fail (@Frédéric Hamidi).

Using the regular syntax works, though:

String.prototype.a = function() {
  alert('a');
};

var s = "s";
s.a();
link|improve this answer
5  
+1, the prototype property is not writable (Object.getOwnPropertyDescriptor(String, "prototype").writable is false), so assignments to that property silently fail (but would noisily throw in strict mode). – Frédéric Hamidi Dec 23 '11 at 8:58
feedback

you have to write like :

String.prototype.a = function(){
alert("a");
};

var s = "s";
s.a();

fiddle : http://jsfiddle.net/PNLxb/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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