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)`
WSH – WScript
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…
WSH/FSO – Expressions régulières
FUNCTION: CDate( ) Implemented in version 1.0 You can determine the expression subtype by using the function VarType( ). CDate(Date) The CDate function converts any valid date and time expression to the variant of subtype Date. The default date output will be of the format: **/**/** The default time output will be of the format: **:**:** *M…
WSH – WshShell
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…