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 – COM/Automation
STATEMENT: ‘ Implemented in version 1.0 ‘ The ‘ statement allows you to insert comments into your code. Code: <% ‘ This is one of two ways to comment in VBScript %> <% Rem This is the other way %>
WSH – WshNetwork
VBScript – Math
OPERATOR: And Implemented in version 1.0 And The And operator is used to perform a logical conjunction on two expressions, where the expressions are Null, or are of Boolean subtype and have a value of True orFalse. The And operator can also be used a « bitwise operator » to make a bit-by-bit comparison of two integers….
VBScript – Date/Heure