Built-in data types include: Empty, Null, Integer, Long, Single, Double, Date, String, Object, Error |
You may declare data types for variables, or you may leave it to the system to infer a type (variant type): <script language="vbscript"> <!-- Qty = 162 ProductName = "Paper Clip" --> </script> |
A global variable is declared with the keyword dim: dim space dim myArray(9) creates a 10 element array indexed from 0 to 9 |