Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Desk Phone API features described in this section are deprecated and supported only on the following models: D40, d45, d50, d60, d62, d65, d70

util.isUndef

Description

Returns true if the supplied variable is undefined, false if it is defined.

...

Note: if the variable you are testing has not been declared in anyway, this will throw an exception. If it has been declared but iniitalized as undefined (e.g,. not set in any way), the code with process.

Parameters

Name

Required

Type

Default

Description

var

Yes

variable

Variable to be checked for definition.

Examples

util.isUndef returns true or false

Code Block
var declaredUndef;
var str = 'foo';
var obj = {'test1' : 'abc'};
util.isUndef(str);  // returns false
util.isUndef(obj.test1);    // returns false
util.isUndef(obj.test2);    // returns true
util.isUndef(declaredUndef); // true
util.isUndef(nonDeclaredVariable); // throws exception