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 – Web
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
OPERATOR: = Implemented in version 1.0 = The operator is used to assign a value to a variable, or to compare strings and numbers, or to print out the value of a variable. When used for assignment, a single variable on the left side of the = operator is given the value determined by one…
FUNCTION: Abs() Implemented in version 1.0 Abs(Number) The Abs function returns the absolute value for a number. Negative numbers become positive. Positive numbers remain positive. Code: <% =Abs(-127.89) %> Output: 127.89 Code: <% =Abs(127.89) %> Output: 127.89
Property: TextStream.AtEndOfLine Implemented in version 2.0 object.AtEndOfLine The AtEndOfLine property returns a Boolean value. If the file pointer is positioned immediately before the file’s end-of-line marker, the value is True. Otherwise, the value is False. The TextStream object must be open for reading or an error will occur when retreiving this property this method. The…
WSH/FSO – Fichiers