GOSAMPLES/Tutorials/🧊 Cube root in Go/🧊 Cube root in Go22 April 2022·1 minShorts Numbers MathUse the Cbrt() function from the math package to find the cube root of a given number in Go.package main import ( "fmt" "math" ) func main() { fmt.Println(math.Cbrt(8)) } Output:2