From http://www.w3schools.com (Copyright Refsnes Data)

VBScript Sgn Function


VBScript 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 1

document.write(Sgn(15))

Output:

1

Example 2

document.write(Sgn(-5.67))

Output:

-1

Example 3

document.write(Sgn(0))

Output:

0


VBScript Reference Complete VBScript Reference

From http://www.w3schools.com (Copyright Refsnes Data)