InterviewSolution
Saved Bookmarks
| 1. |
How will you convert a given number to Integer in VBScript? |
|
Answer» Using CInt function, which converts a given number of any variant subtype to Integer. Example − x = 123y = 123.882document.write("y value after converting to Int - " & CInt(y) & "<br />")
|
|