Here is the code
<script>
String.prototype.testthing = function() {
return "working";
}
alert(String.testthing());
</script>
When I open this page I get the error below
Uncaught TypeError: Object function String() { [native code] } has no method 'testthing'
I cannot figure out why. I've extended the Array prototype with no issues.
String !== String.prototype. – Felix Kling Nov 9 '11 at 21:51Object.getPrototypeOf(String) !== String.prototype. – ephemient Nov 9 '11 at 21:53