We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64978c commit 629b95cCopy full SHA for 629b95c
index.html
@@ -1111,7 +1111,7 @@ <h4 style="font-size:160%;margin:7px">Trigonometry</h4>
1111
const s1 = side2 + side3;
1112
const s2 = side1 + side3;
1113
const s3 = side1 + side2;
1114
- const product = parseFloat((s * s1 * s2 * s3).toFixed(5));
+ const product = s * s1 * s2 * s3;
1115
const area = triangleArea(product);
1116
1117
document.getElementById('triangle-area').innerText =
0 commit comments