TypeName is a keyword which tells the kind of value held by a Variable.
Example:
Dim a
a="VBScript" : b=123
Msgbox TypeName (a)
Msgbox TypeName (b)
OutPut:
String
Integer
Example:
Dim a
a="VBScript" : b=123
Msgbox TypeName (a)
Msgbox TypeName (b)
OutPut:
String
Integer
No comments:
Post a Comment