Function Procedure in VBScript
Function procedure is a discrete block of code that is written to accomplish a particular task. The difference between a Sub procedure and Function procedure is that function can return a value. Syntax: Function {name} (parameters) – – – – – – – – – – – – – – – – …