Describe one thing you’re learning in class today. We learned JSON information and how to manipulate the information. What’s the difference between: function Person(){}, var person = Person(), and var person = new Person()? The first is a function declaration, the second is a function expression, and the third is…