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?
|
I wrote this code in javascript:
I expect it alert an
Why?
| ||||
|
feedback
|
|
You seem to be replacing the entire The Using the regular syntax works, though:
| |||||
feedback
|
|
you have to write like :
fiddle : http://jsfiddle.net/PNLxb/ | |||
|
feedback
|