Followed by a couple of
short paragraphs
var obj = { fullName: "John K. Paul", alertName: function(greeting) { alert(greeting + " " + this.fullName); } }; obj.alertName("Hey"); // Hey John K. Paul