|
|
VBScript CDbl Function
Complete VBScript Reference
The CDbl function converts an expression to type Double.
The expression must be a numeric value.
Syntax
| Parameter |
Description |
| expression |
Required. Any valid expression |
Examples
Example 1
<script type="text/vbscript">
document.write(CDbl(134.345) & "<br />")
</script>
|
The output of the code above will be:
Try it yourself »
|
Example 2
<script type="text/vbscript">
document.write(CDbl(14111111113353355.345455) & "<br />")
</script>
|
The output of the code above will be:
Try it yourself »
|
Complete VBScript Reference
|
|
|