LanguageFunctionspowVersion: v1.7.0On this pagepowFunction pow — exponential function of any baseSynopsispow(x: number, y: number) -> float64DescriptionThe pow function returns the value x raised to the power of y. The return value is a float64 or an error.Examplesecho '2' | zq -z 'yield pow(this, 5)' -=>32.