Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I'm looking for a comprehensive (or as close as possible) list of all the prototype-programming style javascript work done to date. Does anyone know of such a list somewhere, or have the knowledge to compile it somewhere and then reference it here?

share|improve this question
What do you need to know for? – Dean Harding Mar 30 '11 at 22:56
I'm curious - I'd like to geek out different styles/approaches, especially in Javascript, where I can get a rough comparison to functional and class based styles. – blueberryfields Mar 30 '11 at 23:07

1 Answer

up vote 1 down vote accepted

The short answer is that a comprehensive list probably does not exist.

Here is a resource that compares class and prototyped based Javascript, which includes examples of the styles you asked for:

http://www.learn-javascript-tutorial.com/Prototype-Based-Inheritance.cfm

You might want to consider a broader question and the possibly flawed underpinnings of class-based design (particularly for JavaScript): Why make JavaScript class based?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.