var object = {};
var object = { foo: 1, "bar": "some string" };
implicit_form = {"Property 1" => "Value 1", }
alternate_form = { Property_1: "Value 1", }
object.foo //1
var objectNested = { baz: { foo: { bar: 5 } } };
object.baz.foo.bar; //5