I\'ve been watching Douglas Crockford\'s talks at YUI Theater, and I have a question about JavaScript inheritance...
Douglas gives this example to show that \"Hoozit\" i
In addition to Triptych's answer: Hoozit instances will also inherit all instance properties of Gizmo, not only the ones defined in the prototype; eg:
function Gizmo() { this.foo = 'bar'; // foo is visible in every Hoozit instance }