A list of expected technology to be used in this assignment
- IDE
- JavaScript
- Terminal
- Git
- Web Browser
Using your knowledge of javascript basics, complete the provided methods to return the proper values. Use the browser Development Tools to run the commands
Several functions have been provided for you in the JavaScript document. You must provide the logic to complete the function.
The formulas are divided into 5 sections:
| Formula | Equation | Description |
|---|---|---|
| Addition | a + b | a & b are any real number |
| Subtraction | a - b | a & b are any real number |
| Multiplication | a * b | a & b are any real number |
| Division | a / b | a & b are any real number |
| Formula | Equation | Description |
|---|---|---|
| Square | A = s2 | where s = any side of the square |
| Rectangle | A = lw | where l = length and w = width |
| Parallelogram | A = bh | where b = base and h = height |
| Triangle | A = (1/2)bh | where b = base and h = height |
| Circle | A = π r2 | where π = 3.14 and r = radius |
| Sphere | S = 4 π r2 | where s = Surface area |
| Formula | Equation | Description |
|---|---|---|
| Cube | SA = 6s2 | where s = any side |
| Cylinder (lateral) | SA = 2 π r h | where π = 3.14, r = radius, and h = height |
| Formula | Equation | Description |
|---|---|---|
| Square | P = 4s | where s = any side |
| Rectangle | P = 2l + 2w | where l = length and w = width |
| Triangle | P = s1 + s2 + s3 | where s = a side |
| Circle | C = π d | where π = 3.14 and d = diameter |
| Formula | Equation | Description |
|---|---|---|
| Cube | V = S3 | where S = any side |
| Rectangular Container | V = lwh | where l = length, w = width, and h = height |
| Cylinder | V = π r2h | where π= 3.14, r = radius, and h = height |
- Fork and clone the repository as usual
- Open the lab in your favored IDE
- Complete the functions to return the proper values
- Open a browser and use the Dev Tools to test your
- After all functions are complete, push to GitHub and create a pull request