// es5 constructor(as class) definition // JavaScript is prototype-based language functionPerson(firstname, lastname) {
// public property this.firstname = firstname; this.lastname = lastname;
// private property var records = [{type: 'in', amount: 0}];
// public function // it needs to be instance method to access private properties this.addTransaction = function(trans) { if (trans.hasOwnProperty('type') && trans.hasOwnProperty('amount')) { records.push(trans); } }
// public function this.getBalance = function() { var total = 0;
records.forEach(function(record){ if (record.type === 'in') { total += record.amount; } else { total -= record.amount; } });
In my opinion, weekmap method is the best, if you need perfect privacy. Other than that, you could use conventional approach using underscore(_) in front of private property names.
But I found most cases can be solved by modularity approach which looks something like the code below.