fullName : function() { return this.firstName + " " + this.lastName; }
In an object method, this refers to the "owner" of the method.
The person object is the owner of the fullName method.
Pro tip: use ```triple backticks around text``` to write in code fences