16 lines
No EOL
373 B
JavaScript
16 lines
No EOL
373 B
JavaScript
/** @class */
|
|
var Person = makeClass(
|
|
/** @lends Person# */
|
|
{
|
|
/** Set up initial values. */
|
|
initialize: function(name) {
|
|
/** The name of the person. */
|
|
this.name = name;
|
|
},
|
|
|
|
/** Speak a message. */
|
|
say: function(message) {
|
|
return this.name + " says: " + message;
|
|
}
|
|
}
|
|
); |