Prototype: Objects
<script>
document.observe('dom:loaded', function() {
var Person = {
name: "Jesse",
age: 26,
hometown: "Grand Rapids",
siblings: ['Joe', 'Jenny', 'Justine']
};
$('output').insert(Person.name + '<br />');
$('output').insert(Person.siblings[0] + '<br />');
//alert(Object.keys(Person));
//alert(Object.toQueryString(Person));
//alert(Object.toJSON(Person));
Person.siblings.push('New Item');
$('output').insert(Person.siblings + '<br />');
});
</script>
<div id="output"></div>