VBScript: Conversion and Format Functions - This Next Part Will Make You CDbl()
(Page 5 of 5 )
Once more, CDbl() does what? It lets you return an expression as a double. Yay! Here is it in code:
<html>
<body>
<script type="text/vbscript">
dim dayamn
dayamn=189809098019810980110981.80098098109810981098
document.write(CDbl(dayamn))
</script>
</body>
</html>
This will return the value as a double, resulting in:
1.89809098019811E+23
Though to be fair, even if you tried to print that number without using CDbl() it would print with scientific notation.
Conclusion
Well, I did not get through even half of the functions. But never fear; that just means I'll have to write another article. Or two. Either way, be sure to come back often as we continue and one day, in the far, far off future, finish our description of the VBScript Functions.
Till then...
| DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware. |