vbscript – Time
**FUNCTION:** `Time()`
**Description**
Retourne l’heure courante (sans la date).
**Syntax**
`Time()`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Time
« `
**Output :** `heure courante`
**FUNCTION:** `Time()`
**Description**
Retourne l’heure courante (sans la date).
**Syntax**
`Time()`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Time
« `
**Output :** `heure courante`
VBScript – Math
STATEMENT: ‘ Implemented in version 1.0 ‘ The ‘ statement allows you to insert comments into your code. Code: <% ‘ This is one of two ways to comment in VBScript %> <% Rem This is the other way %>
VBScript – Math
WSH/FSO – Fichiers
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…
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…