# JS syntax - objects [[JS Syntax]] ### objects ```js object.property object.method() ``` ```js const person = { firstName: "John", lastName : "Doe", id       : 5566, fullName : function() { return this.firstName + " " + this.lastName; } }; ```