2
How do I for example calculate the seventh (7) root of 1.17 in Javascript?
2
How do I for example calculate the seventh (7) root of 1.17 in Javascript?
4
Example below:
var raizSetimaDe1_17 = Math.pow(1.17, 1.0 / 7);
alert("O valor da raiz sétima de 1,17 é " + raizSetimaDe1_17);
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.
@LINQ thanks for Edit.
– Marcelo Shiniti Uchimura