Previous | Next | (P-PDF) JavaScript
Topic: method to list properties
Conf: (P-PDF) JavaScript, Msg: 28069
From: george
Date: 10/4/2001 05:50 AM
>Is there a method that can be
>used to get the list of an
>object's =properties?
Use a "for" loop. There are two forms, one of which you're probably already familiar with. The other goes something like:
for (i in object)
George