Describe one thing you’re learning in class today. Today in class we are continuing the lessons on JSON Objects and Arrays. We went over how to access data in complex data structures. What’s the difference between: function Person(){}, var person = Person(), and var person = new Person()? function Person() {} Function Declaration. Declares a function statement (statements perform an action) but does not execute, however, it does get registered into the global namespace.