I\'ve been initializing my reusable classes like this (constructor is usually a copy-constructor):
function Foo() {}
Foo.prototype.a = \"1\";
Foo.prototype.b
Properties on an object's prototype (that is, the prototype of its constructor) are readable via a reference to an the object:
function Constructor() { }
Constructor.prototype.a = "hello world";
var x = new Constructor();
alert(x.a); // "hello world"
However, those properties really are "stuck" on the prototype object:
alert(x.hasOwnProperty("a")); // false
The JSON serializer only pays attention to properties that directly appear on objects being processed. That's kind-of painful, but it makes a little sense if you think about the reverse process: you certainly don't want JSON.parse()
to put properties back onto a prototype (which would be pretty tricky anyway).