Monday 10 October 2011

TypeName:

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

No comments:

Post a Comment