Root with Indice - Javascript

Asked

Viewed 94 times

2

How do I for example calculate the seventh (7) root of 1.17 in Javascript?

1 answer

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

You are not signed in. Login or sign up in order to post.