Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
You attempted to use an identifier that the JavaScript compiler does not recognize. The undefined value is returned whenever you use:
a variable that does not exist,
a variable that has been declared, but never had a value assigned to it,
an object property that does not exist.
To correct this error
- Declare the variable with a var statement (as in
var
x;).