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
VBScript – Math
VBScript – Math
WSH/FSO – Fichiers
OPERATOR: – Implemented in version 1.0 – The – operator has two uses. It is used for subtracting numbers. It also is used to indicated the sign of a number (i.e., -4.5832). Code: <% total = 5.678 – 0.234 – 23.1 %> Output: -17.656
OPERATOR: & Implemented in version 1.0 & The & operator is the preferred operator for concatenating strings. However, the + operator may also be used for concatenation. Code: <% cheese= » is made of blue cheese. » %> <% sentence= »The moon » & cheese & » Mice like blue cheese. » %> Output: The moon is made of blue…
STATEMENT: Call Implemented in version 1.0 Call The Call statement can be used for calling a function or subroutine. Note that the use of Call is optional. In other words, you can call a function or subroutine by simply stating the function’s or subroutine’s name. If you use Call and if there are one or…