/** * @author buenger */ var CreditInterest = { getInterest: function () { return 13.5; }, getMinInterest: function () { return 9.9; }, getMaxInterest: function () { return 13.5; } }