vbscript-greater-than
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 determines if the first expression is greater-than the second expression.
Code:
<% 123 > 456 %>
<% « a » > « A » %>
Output:
False
True
VBScript – Date/Heure
OPERATOR: / Implemented in version 1.0 / The / operator divides two numbers and returns a floating-point number. Code: <% result = 25.0 / 4.975 %> Output: 5.0251256281407 Code: <% result = 25 / 5 %> Output: 5
VBScript – Conversion
VBScript – Statements
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