Returning either list of rows or NULL in my function. How do I work with multiple return values in a jsl-script?
I guess my problem can be solved pretty easily.I want to write a function, that either returns a list of row-numbers or NULL in dependency of an if-clause inside my function.How can I handle multiple return values and how can I return NULL?My function should look somehow like this:myFunction = Function( {...}, {...}, list = { ... }; if(...) then return list else return NULL);I...