Javascript in cells

So I have the following DMN

I am curious about javascript options here.

How do I implement them and debug them? Are there any tutorials on this? My thinking is that output of this cell is to return true or false?

Hey @Rob_Davidson, something similar to this? Using scripts inside DMN-table and testing it

Thanks for your reply although I think its relevant it doesnt really help me much as a new person to camunda about where to get started with adding javascript into cells.

@Rob_Davidson take a look at this section: https://docs.camunda.org/manual/7.9/user-guide/dmn-engine/expressions-and-scripts/#configuring-the-expression-language

Its the same purpose of the logic for JS it just uses Juel instead. You can paste the def into a .dmn file to see it in the editor. Yes it evals to true/false in this case

Thanks for this will check it out.