On this pageisNothing() isNothing(val): val is null | undefined Determines if the given value is undefined or null. Parameters val unknown The value to check whether or not it is null or undefined. Returns val is null | undefined Example if(isNothing(val)) { // error path...}