René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

inheritance [JavaScript snippet]

// http://helephant.com/2009/08/javascript-prototype-chaining/

function Animal(nm) {
  this.name = nm
}

function Dog(nm) {

}


function main() {

}