Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itsjordanmuller/odin-calculator

Calculator Assignment for The Odin Proejct JavaScript Foundations
https://github.com/itsjordanmuller/odin-calculator

Last synced: about 2 months ago
JSON representation

Calculator Assignment for The Odin Proejct JavaScript Foundations

Awesome Lists containing this project

README

        

# The Odin Project - Calculator Project
This is a GitHub repository meant to store my Calculator project. This project will use HTML/CSS & JavaScript to create a website calculator. The calculator should look like a real simple calculator and have buttons such as =, Clear, and the following functions:
- add
- subctract
- multiply
- divide

# Files for This Assignment

## README.md
The document you are currently reading!

## index.html
The HTML document that hold this all together, the initial layout of buttons and elements happens here.

## style.css
The styling of the calculator, including padding, margins, colors, etc.

## calc.js
The functional and computational side of the calculator, this is where each operator is connected to a function that takes input variables from the calculator.