función de ejecución de JavaScript

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

Object.CallName();   // Will return "John Doe"
Undefined