@Charley: No, no conflict. Prototype was actually named "Prototype" because it makes extensive use of the prototype objects. Why do you ask?
@Johan: > There is no such object it's only some sort of property every object has and > it's used to extend the native objects existing in Javascript. Only *function* objects have a property called `prototype`, which isn't the function's prototype but is instead is the object that gets assigned as the prototype of any objects the function creates if you call it as a constructor (e.g., via the `new` operator). Objects have prototypes, but there is no standard property for accessing an object's prototype directly. (Mozilla's SpiderMonkey engine, and some others, do expose it via a property called `__proto__`, but that did not get included in the latest specification, although the latest specification does give us some new methods for limited interaction with the object's prototype.) -- T.J. Crowder Independent Software Contractor tj / crowder software / com On 5 June, 11:15, Johan Arensman <[email protected]> wrote: > Hi, > > There is no such object it's only some sort of property every object has and > it's used to extend the native objects existing in Javascript. > > If you want to learn more about this check this page: > > http://www.prototypejs.org/learn/extensions > > Greets, > Johan > > On Sat, Jun 5, 2010 at 6:16 AM, Charley Walter > <[email protected]>wrote: > > > > > Thanks in advance. > > > -- > > You received this message because you are subscribed to the Google Groups > > "Prototype & script.aculo.us" group. > > To post to this group, send email to > > [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<prototype-scriptaculou > > s%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/prototype-scriptaculous?hl=en. -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
