Budgety
A simple one page budgeting app built in JavaScript :)
- HTML5
- CSS3
- JavaScript
A small section of the JS in this project:
Expense.prototype.calcPercentage = function (totalIncome) {
if (totalIncome > 0) {
this.percentage = Math.round((this.value / totalIncome) * 100);
}
else {
this.percentage = -1;
}
};
- Ability to add and remove rows
- Calculates income vs expenses
- Quickly choose between income vs expenses using a small dropdown
To-do list:
- Visually improve design
- More mobile friendly
Project is: In progress due to potential improvements
Amy Scott