File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,8 @@ <h2>Tool by: <a alt='Altify Developing' title='Altify Developing' href="https://
7878let v = getAllUrlParams ( origin ) . v
7979let m = getAllUrlParams ( origin ) . m
8080let mod = getAllUrlParams ( origin ) . type
81- let product1pt1 = ( v / mod )
82- let product1pt2 = ( product1pt1 * ( mod * 0.01 ) )
83- let product2pt1 = ( m * mod )
84- let product2pt2 = ( product2pt1 / ( mod / 0.01 ) )
81+ let product1 = ( v / mod )
82+ let product2 = ( m * mod )
8583document . getElementById ( "answer1" ) . innerHTML = 'tanθ = ' + ( Math . tan ( a / o ) ) + '<br>sinθ = ' + ( Math . sin ( o / h ) ) + '<br>cosθ = ' + ( Math . cos ( a / h ) ) ;
86- document . getElementById ( "answer2" ) . innerHTML = '<br>youtube monetized = ~ $' + product1pt2 + '<br>views to get money = ~' + product2pt2 ;
84+ document . getElementById ( "answer2" ) . innerHTML = '<br>youtube monetized = ~ $' + product1 + '<br>views to get money = ~' + product2 ;
8785</ script >
You can’t perform that action at this time.
0 commit comments