nullValue
Last updated
Last updated
nullValue() function is the Standard function available in 200OK.
Description : The nullValue function checks if an expression is null and returns a substitute expression if it is. If the expression is not null, it returns the original expression value.
Syntax : fx_nullValue(expression, substitute_expression)
Example : fx_nullValue(null, 11>10) returns 11>10 as the response because the original expression was null.
Here we go with simple scenario using the above function.
Request Side :
Response Side :