FunctionssqrtVersion: v4.23On this pagesqrtComputes the square root of a number.sqrt(x:number) -> floatDescriptionThe sqrt function computes the square root of any non-negative number x.ExamplesCompute the square root of an integerfrom {x: sqrt(49)}{x: 7.0}Fail to compute the square root of a negative numberfrom {x: sqrt(-1)}{x: null}