console log
# 🤝help
c
I have one issue here using consol log. I have that simple code exection herehere: // Initialize the counter workflow.currentFloorIndex = 0; // Get the current floor number and name workflow.currentFloorName = workflow.floorNamesArray[workflow.currentFloorIndex]; workflow.currentFloor = workflow.currentFloorIndex + 1; console.log("test log") console.log(workflow.currentFloorIndex) Console workflow.currentFloorIndex leads to no output. How can that be. In other scripts it returns the variable. Do I overlook something?
workflow.testVar = 0; console.log("test log") console.log(workflow.testVar) returns also just the test log string bot not the 0 from the testVar. In another Script it returns it. The testVar is shown ther Event Debugger as 0. It is frustrating.
here a screenshot:

https://cdn.discordapp.com/attachments/1137818003107491971/1137820737189724310/image.png

The issue seems to be related with the value 0. It is not shown when logged via console
console.log(String(workflow.testVar)); shows it
Yes it is the 0 which is not getting shown in the console.

https://cdn.discordapp.com/attachments/1137818003107491971/1137827314210709605/image.png

18 Views