> I'm making a class to create a table and fill that table with data > from JSON. But I can't find a way to loop throug my JSON object > without hardcoding the key/value pair.
each(). Or getKeys() if you want to get a list of the keys and get() by key after that. --Sandy
