vbscript-less-than
OPERATOR: <
Implemented in version 1.0
<
The < operator determines if the first expression is less-than 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 the second expression.
Code:
<% 123 < 456 %>
<% « a » < « A » %>
Output:
True
False
WSH/FSO – Fichiers
VBScript – Math
FUNCTION: Abs() Implemented in version 1.0 Abs(Number) The Abs function returns the absolute value for a number. Negative numbers become positive. Positive numbers remain positive. Code: <% =Abs(-127.89) %> Output: 127.89 Code: <% =Abs(127.89) %> Output: 127.89
VBScript – Math
VBScript – Chaînes
VBScript – Avancé