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 – Date/Heure
VBScript – Conversion
WSH – WshShell
WSH/FSO – Fichiers
OPERATOR: > Implemented in version 1.0 > The > operator determines if the first expression is greater-than the second expression. Code: <% 123 > 456 %> <% « a » > « A » %> Output: False True
OPERATOR: ^ Implemented in version 1.0 ^ The ^ operator, which is sometimes called « hat », is used to raise a number to a power. Code: <% power = 2^2 %> Output: 4 Code: <% power = 4.819^1.753 %> Output: 15.7479305850686