var person = {
firstName: "Penelope",
lastName: "Barrymore",
fullName: function () {
// Notice "this" refers to an object
console.log(this.firstName + " " + this.lastName);
// We could have also written this:
console.log(person.firstName + " " + person.lastName);
}
}