vbscript – VarType
**FUNCTION:** `VarType(var)`
**Description**
Retourne un code numérique décrivant le type Variant.
**Syntax**
`VarType(var)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo VarType(Now)
« `
**Output :** `7 (Date)`
**FUNCTION:** `VarType(var)`
**Description**
Retourne un code numérique décrivant le type Variant.
**Syntax**
`VarType(var)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo VarType(Now)
« `
**Output :** `7 (Date)`
OPERATOR: + Implemented in version 1.0 + The + operator has two uses. It is used to add numbers together. It also may be used to concatenate (combine) strings together. Note it is usually recommended that only the & operator be used for string concatenation. Addition: Code: <% total = 5.678 + 0.234 + 23.1…
WSH – WScript
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 – Date/Heure
WSH/FSO – Collections
VBScript – Statements