We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ea4b8 commit 3a051a0Copy full SHA for 3a051a0
html/NEW_TOOLS/TRIG_CALC/getresults.html
@@ -78,8 +78,8 @@ <h2>Tool by: <a alt='Altify Developing' title='Altify Developing' href="https://
78
let v = getAllUrlParams(origin).v
79
let m = getAllUrlParams(origin).m
80
let mod = getAllUrlParams(origin).type
81
-let product1 = (v/mod)
82
-let product2 = (m*mod)
+let product1 = (v*mod)
+let product2 = (m/mod)
83
document.getElementById("answer1").innerHTML = 'tanθ = '+(Math.tan(a/o))+'<br>sinθ = '+(Math.sin(o/h))+'<br>cosθ = '+(Math.cos(a/h));
84
document.getElementById("answer2").innerHTML = '<br>youtube monetized = ~ $'+product1+'<br>views to get money = ~'+product2;
85
</script>
0 commit comments