FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

VBScript Sgn Function


Full Reference Complete VBScript Reference

The Sgn function returns an integer that indicates the sign of a specified number.

Syntax

Sgn(number)

Parameter Description
number Required. A valid numeric expression

If number is:

  • >0 - Sgn returns 1
  • =0 - Sgn returns 0
  • <0 - Sgn returns -1

Example

Example

<%

response.write(Sgn(15) & "<br />")
response.write(Sgn(-5.67) & "<br />")
response.write(Sgn(0))

%>

The output of the code above will be:

1
-1
0
Show Example »

Full Reference Complete VBScript Reference