var o = {d:1,a:2,c:3}
console.log(o)
// Object { a: 2, d: 1, c: 3 }
4.3.3 Object
An object is a member of the type Object. It is an unordered collection of properties each of which
contains a primitive value, object, or function. A function stored in a property of an object is called a
method.