vbscript-less-than or equal
OPERATOR: <=
Implemented in version 1.0
<=
The <= operator determines if the first expression is less-than-or-equal the second expression.
Code:
<% 123 <= 456 %>
<% « a » <= « A » %>
Output:
True
False
OPERATOR: <=
Implemented in version 1.0
<=
The <= operator determines if the first expression is less-than-or-equal the second expression.
Code:
<% 123 <= 456 %>
<% « a » <= « A » %>
Output:
True
False
WSH – WScript
OPERATOR: – Implemented in version 1.0 – The – operator has two uses. It is used for subtracting numbers. It also is used to indicated the sign of a number (i.e., -4.5832). Code: <% total = 5.678 – 0.234 – 23.1 %> Output: -17.656
VBScript – Conversion
VBScript – Statements
WSH/FSO – Fichiers
FUNCTION: Atn( ) Implemented in version 1.0 Atn(Number) The Atn function returns the arctangent for a number. Code: <% =Atn(45.0) %> Output: 1.54857776146818 You can also use a negative number. Code: <% =Atn(-45.0) %> Output: -1.54857776146818