"Philip KOCH" <philonline78@h otmail.com> writes:
[color=blue]
> I'm trying to calculate the cubic root of a fonction, what syntax should I
> use?[/color]
A cubic root would be the same as raising to the 1/3rd power. You can make
your own cubicRoot function:
function cubicRoot(n) {
return Math.pow(n,1/3);
}
/L
--
Lasse Reichstein Nielsen - lrn@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
'Faith without judgement merely degrades the spirit divine.'
JRS: In article <3fb033f6$0$428 8$ba620e4c@read er3.news.skynet .be>, seen
in news:comp.lang. javascript, Philip KOCH <philonline78@h otmail.com>
posted at Tue, 11 Nov 2003 01:57:24 :-
[color=blue]
>I'm trying to calculate the cubic root of a fonction, what syntax should I
>use?[/color]
Comment