// constructor function function Person (name) { // assigning parameter values to the calling object this.name = name; // defining method this.greet = function () { return ('Hello' + ' ' + this.name); } }