Whatever message this page gives is out now! Go check it out!

Sqr

Last update:
May 18, 2026

Description

Calculates the square root of a number.

Returns

Number; square root of  number .

Category

Function syntax

Sqr(number)

See also

Parameters

Parameter
Description
number
A positive integer or a variable that contains one. Number whose square root to get.

Usage

The value in number must be greater than or equal to 0.
<h3>Sqr Example</h3> 

<p>Returns the square root of a positive number. 

<p>Sqr(2): <cfoutput>#Sqr(2)#</cfoutput> 
<p>Sqr(Abs(-144)): <cfoutput>#Sqr(Abs(-144))#</cfoutput> 
<p>Sqr(25^2): <cfoutput>#Sqr(25^2)#</cfoutput>

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page