| Cogitek RIATest 3 Documentation | Copyright © Cogitek Inc. |
Variables are used for storing and retrieving values. The following statement declares variable named 'x' and assigns a number 5 to it:
var x = 5;
Variable names must start with a letter and may contains letters, numbers and the underscore _ character. The maximum length of a variable name is 64 characters.