Skip to content

Instantly share code, notes, and snippets.

// duck typing ( maybe all you need )
var me = {name: "WebReflection"};
// basic class
function Person() {}
Person.prototype.getName = function () {
return this.name;
};
Person.prototype.setName = function (name) {
this.name = name;