InterviewSolution
Saved Bookmarks
| 1. |
How will you format a number in percetage format in VBScript? |
|
Answer» Using FormatPercent function, which would return an expression formatted as a percent. Example − Dim num : num = -645.998651document.write(FormatPercent(num, 2))& "<br/>" '-64,599.86% |
|