|
|
VBScript CInt Function
Complete VBScript Reference
The CInt function converts an expression to type Integer.
Note: The value must be a number between -32768 and 32767.
Syntax
| Parameter |
Description |
| expression |
Required. Any valid expression |
Example
Example
<script type="text/vbscript">
document.write(CInt("300") & "<br />")
document.write(CInt(36.75) & "<br />")
document.write(CInt(-67) & "<br />")
</script>
|
The output of the code above will be:
Try it yourself »
|
Complete VBScript Reference
|
|
|