amyscotteng / budgety

A simple one page app that helps you balance your budget

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project Name

Budgety

Table of contents

General info

A simple one page budgeting app built in JavaScript :)

Technologies

  • HTML5
  • CSS3
  • JavaScript

Code Examples

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;
        }
    };

Features

  • 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

Status

Project is: In progress due to potential improvements

Contact

Amy Scott

About

A simple one page app that helps you balance your budget


Languages

Language:JavaScript 59.1%Language:HTML 21.8%Language:CSS 19.1%