isUndefined

checks whether the passed value is undefined

boolean isUndefined(any check);

Parameters

checkanythe value to check

Returns

booleantrue, if the passed value is undefined

Example

if (webix.isUndefined(obj)){
    do_something();
}

Back to top