Vbs Arrays

[Solved] Vbs Arrays | Vb - Code Explorer | yomemimo.com
Question : vbs arrays

Answered by : pleasant-puma-ua389mh9los0

'Method 1 : Using Dim
Dim arr1() 'Without Size
'Method 2 : Mentioning the Size
Dim arr2(5) 'Declared with size of 5
'Method 3 : using Array()
Dim arr3
arr3 = Array("apple","Orange","Grapes")

Source : https://www.tutorialspoint.com/vbscript/vbscript_arrays.htm | Last Update : Fri, 19 Mar 21

Answers related to vbs arrays

Code Explorer Popular Question For Vb