Create Javascript Object : Literal Object Notation
var obj = { prop1: 1, prop2: "2" }; console.log(obj.prop1); console.log(obj.prop2);