Hello,Your question arise's mainly from the perspective of debugging
Adaptive form expressions right ? If yes, as of today there is no OOTB
support to debug expression, but you can make use of the in-build
browser support to add a javascript breakpoint during code exection [1]
using the debugger; keyword. For Example,Say, you are writing a
calculate expression to compute a field's value, then you can add
debugger; keyword before the actual business logic,debugger;
textbox.valueHope this answer's...