JavaScript Integration Fail

0
Hi everyone! I am currently learning how to do integration using JavaScript. Hence, I am trying to learn from the very basic. The formula that I would like Mendix to calculate using the JavaScript integration is    Value Y = Value X + 100   Value X will be input that will be entered by the users where as Value Y will be the final output.   Currently, these are the things I have done, however, I did not see any output on the overview page.
asked
1 answers
1

You are missing to add the formula in js snippet.

 

delete the line starting with throw new Error (only this line) and add below code(s)

 

const valueY = valueX + 100;   

return valueY;

 

Then run your project and invoke this nanoflow.

answered