当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsArray 函数
The IsArray function returns a Boolean value that indicates whether a specified variable is an array. If the variable is an array, it returns True, otherwise, it returns False.
IsArray 函数可返回 Boolean 值指明某变量是否为数组。是则返回True,不是则返回False
IsArray(variable) |
参数 | 描述 |
---|---|
variable | Required. Any variable 必选项。任何变量 |
dim a(5) 输出: True |
dim a 输出: False |