views:

34

answers:

1

Hi all,

I'm newer to Javascript, and I was wondering what exactly a "prototype chain" is in regards to Javascript Object Notation? What would I use it for?

EDIT:

New Question:

What are prototypes in Javascript?

Thanks!

+2  A: 

Prototypes are a concept in JavaScript, but do not apply in JSON, which is purely a data transfer format. JSON is a subset of JavaScript literal syntax, and one of the things it does not allow is functions.

EDIT: There are existing questions, such as How does JavaScript .prototype work?, explaining how it works in JavaScript

Matthew Flaschen
Oh so I *am* misunderstanding this.
Alex