The cbrt() method returns the cubic root of a number.
Math.cbrt(x)
A Number
Return the cubic root of a number:
//display the cubic root of 125 console.log(Math.cbrt(125));