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

https://github.com/luisgbr1el/bhaskara-calculator

A simple Bhaskara calculator using JavaScript.
https://github.com/luisgbr1el/bhaskara-calculator

bhaskara calculator javascript matematica math mathematica

Last synced: about 1 month ago
JSON representation

A simple Bhaskara calculator using JavaScript.

Awesome Lists containing this project

README

        

# Bhaskara Calculator
This repository uses JavaScript, HTML and CSS.

This project is based on Bhaskara's Formula.

## Bhaskara's Formula
![image](https://user-images.githubusercontent.com/62726888/140593078-bf033565-b19b-4bbb-9b16-121acb12c3c7.png)

- The whole project is based on this calcs.

## Running the formula
```js
var delta = (b * b) - (4 * a * c);

var x1 = (-(b) + Math.sqrt(delta)) / (2 * a);
var x2 = (-(b) - Math.sqrt(delta)) / (2 * a);;
```

## v1.0.0
Click here to visit and test **Demo**.

## Demo

![chrome-capture](https://user-images.githubusercontent.com/62726888/140593808-8c659967-2e49-4dc8-a3d0-bcded8f167c7.gif)