Abs - MACROMEDIA COLDFUSION 4.5-CFML LANGUAGE Reference

Cfml language reference
Table of Contents

Advertisement

Chapter 2: ColdFusion Functions

Abs

Returns the absolute value of a number. The absolute value of a number is the number
without its sign.
See also Sgn.
Syntax
Abs( number
number
Any number.
Examples
<!--- This example shows how to use the ABS function --->
<HTML>
<HEAD>
<TITLE>
Abs Example
</TITLE>
</HEAD>
<BODY BGCOLOR=silver>
<H3>Abs Example</H3>
<P>The absolute value of the following numbers:
1,3,-4,-3.2,6 is
<CFOUTPUT>
#Abs(1)#,#Abs(3)#,#Abs(-4)#,#Abs(-3.2)#,#Abs(6)#
</CFOUTPUT>
<P>The absolute value of a number is the number without its sign.
</BODY>
</HTML>
)
251

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION 4.5-CFML LANGUAGE and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Coldfusion 4.5

Table of Contents