├── .vscode
├── launch.json
└── settings.json
├── LICENSE
├── README.md
├── images
├── favicon.ico
├── heart.png
├── history.png
└── meta.jpg
├── index.html
├── scripts
├── calc.js
└── hist.js
└── styles
└── style.css
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // Use IntelliSense to learn about possible attributes.
3 | // Hover to view descriptions of existing attributes.
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [
7 | {
8 | "type": "chrome",
9 | "request": "launch",
10 | "name": "Launch Chrome against localhost",
11 | "url": "http://localhost:8080",
12 | "webRoot": "${workspaceFolder}"
13 | }
14 | ]
15 | }
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "liveServer.settings.port": 5502
3 | }
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) [2023] [harsh98trivedi]
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Simple JavaScript Calculator
2 |
3 | [](https://harsh98trivedi.github.io/Simple-JavaScript-Calculator)
4 |
5 | A simple JavaScript Calculator made by [Harsh Trivedi](https://harsh98trivedi.github.io).
6 |
7 | ## Overview
8 |
9 | The Simple JavaScript Calculator is a straightforward web-based calculator built using JavaScript. It provides basic arithmetic operations to help users perform calculations quickly and efficiently.
10 |
11 | ## Usage
12 |
13 | You can access the Simple JavaScript Calculator by visiting the following link: [Simple JavaScript Calculator](https://harsh98trivedi.github.io/Simple-JavaScript-Calculator)
14 |
15 | Simply enter your mathematical expressions and use the calculator's features to perform calculations with ease.
16 |
17 | ## Contributors
18 |
19 | Contributors are always welcome to make contributions to this project and help improve it. If you'd like to contribute or work on available issues, feel free to do so. Let's collaborate and make this calculator even better!
20 |
21 | ## Happy Coding!
22 |
23 | We hope you find this Simple JavaScript Calculator useful and enjoy using it for your calculations. If you have any questions or suggestions, please don't hesitate to reach out to [Harsh Trivedi](https://harsh98trivedi.github.io).
24 |
25 | Happy coding!
26 |
--------------------------------------------------------------------------------
/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/harsh98trivedi/Simple-JavaScript-Calculator/0d82ff4a695b392640df28dec46a6f0e4c46deaa/images/favicon.ico
--------------------------------------------------------------------------------
/images/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/harsh98trivedi/Simple-JavaScript-Calculator/0d82ff4a695b392640df28dec46a6f0e4c46deaa/images/heart.png
--------------------------------------------------------------------------------
/images/history.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/harsh98trivedi/Simple-JavaScript-Calculator/0d82ff4a695b392640df28dec46a6f0e4c46deaa/images/history.png
--------------------------------------------------------------------------------
/images/meta.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/harsh98trivedi/Simple-JavaScript-Calculator/0d82ff4a695b392640df28dec46a6f0e4c46deaa/images/meta.jpg
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |