no cube root in javascript?
pseudostereo
Aug 28 2023 | 4:40 am
The Javascript Math object includes the static method Math.cbrt(), to calculate the cube root.
However, when I try to run a js object that uses this method, I get this error:
js: test.js: Javascript TypeError: Math.cbrt is not a function, line 8
I'm not getting the error with any other Math methods.
???