isUndefined

checks whether the passed value is undefined

boolean isUndefined(any check);
checkanythe value to check
booleantrue, if the passed value is undefined

Example

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

Back to top