InterviewSolution
Saved Bookmarks
| 1. |
How to create a function in VBScript? |
|
Answer» The most common way to define a function in VBScript is by using the Function keyword, followed by a unique function name and it may or may not carry a list of parameters and a statement with a End Function keyword, which indicates the end of the function. |
|