-
Published on Monday, October 6th, 2008 Currently I’m working a fair bit with JavaScript and teaching different ways to use it, and what I want to talk to you about is if and how you use inheritance in JavaScript. The prototype way The way inheritance works in JavaScript is that it is prototype-, instead of class-based. For instance, take a look at this: function Being () { this.living = true; } Being.prototype.breathes = function () { return true; }; An obje
(Read Full Article)
Related Articles
- DatePicker using Prototype and Scriptaculous
- also categorized in Prototype
- Dojo 1.0 Released: The Granddaddy is Born
- also mentions Javascript
- Bringing the Browser to the Server
- also categorized in Prototype
- Create your own iGoogle with Prototype
- also categorized in Prototype
- Prototype Javascript Library
- also categorized in Prototype
- DOMAssistant 2.5 released - Css selector support, new AJAX methods and more goodies added!
- also published in Robert’s talk
- ModalBox An easy way to create popups and wizards
- also categorized in Prototype
- FlashReplace - A light-weight JavaScript to insert Flash movies into your web page - Robert’s talk
- also published in Robert’s talk
- Ajaxian Featured Tutorial: Extending DOM elements Prototypes
- also categorized in Prototype
- First JS Test Suite Bug Caught
- also categorized in Prototype






Recent Comments
joew » Partial Functions in JavaScript
This is a fascinating article, partial function application is a really useful technique John's ...
pawan » Google
Here are two other similar products which I bookmarked in the past: http://www.maani ...
See all recent comments