Quick code sample:
var obj = jClass({
_constructor: function(params) { /* instance initialization code */ },
attribute: null,
method1: function () { },
method2: function (arg) { }
});
See the documentation for more information and examples.var obj = jClass({
_constructor: function(params) { /* instance initialization code */ },
attribute: null,
method1: function () { },
method2: function (arg) { }
});
See the documentation for more information and examples.