What is the difference between this constructor-based syntax for creating an object:
person = new Object()
...and this literal syntax:
Memory usage is different if you create 10 thousand instances. new Object() will only keep only one copy while {} will keep 10 thousand copies.
new Object()
{}