blob: c0c383b28b23a26a90560ebf20a0debbad101075 [file] [log] [blame]
function ExpensesModel() {
var self = this;
self.types = ["ahoj", "cau"];
self.addType = function(type) {
self.types.push(type);
this.types;
};
function privateFun() {};
}
ExpensesModel.prototype.publicFnc = function () {};
var test = new ExpensesModel();
test.types;