prototypeの履歴

要するにこう

function hoge() {}
hoge.prototype.fuga = 30;
var poyo = new hoge();
alert(poyo.fuga);    // 30