The Math cbrt() static method returns the cube root of a number.
console.log(Math.cbrt(-1));
// -1
console.log(Math.cbrt(1));
// 1
console.log(Math.cbrt(Infinity));
// Infinity
console.log(Math.cbrt(64));
// 4