vbscript-greater-than or equal
OPERATOR: >=
Implemented in version 1.0
>=
The >= operator determines if the first expression is greater-than-or-equal the second expression.
Code:
<% 123 >= 456 %>
<% « a » >= « A » %>
Output:
False
True
OPERATOR: >=
Implemented in version 1.0
>=
The >= operator determines if the first expression is greater-than-or-equal the second expression.
Code:
<% 123 >= 456 %>
<% « a » >= « A » %>
Output:
False
True
VBScript – Chaînes
WSH – WshShell
WSH/FSO – Fichiers
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
WSH/FSO – Fichiers