Search w3schools.com:

SHARE THIS PAGE

VBScript CInt Function


VBScript Reference Complete VBScript Reference

The CInt function converts an expression to type Integer.

Note: The value must be a number between -32768 and 32767.

Syntax

CInt(expression)

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:

300
37
-67

Try it yourself »

VBScript Reference Complete VBScript Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]