var Object = { Name:"John", LastName: "Doe", CallName: function() { return this.Name + " " + this.LastName; } } Object.CallName(); // Will return "John Doe"