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
WSH – WshShell
WSH – WScript
Property: TextStream.AtEndOfStream Implemented in version 2.0 object.AtEndOfStream The AtEndOfStream property returns a Boolean value. If the file pointer is positioned at the end of the file, the value is True. Otherwise, the value is False. The TextStreamobject must be open for reading or an error will occur when using this method. The following code uses…
FUNCTION: Array( ) Implemented in version 2.0 Array(List) The Array function is used to create a static one-dimension array. You cannot declare a dynamic array using the Array function. Note that the first element in an array is always labeled zero, for example, myarray(0). The List argument is a listing of values that will become the…
VBScript – Statements
VBScript – Statements