vbscript – Sqr
**FUNCTION:** `Sqr(number)`
**Description**
Racine carrée.
**Syntax**
`Sqr(number)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Sqr(9)
« `
**Output :** `3`
**FUNCTION:** `Sqr(number)`
**Description**
Racine carrée.
**Syntax**
`Sqr(number)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Sqr(9)
« `
**Output :** `3`
VBScript – Avancé
WSH – WScript
WSH/FSO – Fichiers
VBScript – Math
VBScript – Statements
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