"IF" flow logic returns incorrect results when a number value is added to string data type output inside the script stepDescription"IF" flow logic returns incorrect results when a number value is added to string data type output inside the script stepSteps to Reproduce Create actionAdd REST stepAdd script stepInput the status code of the REST step into the script stepCreate output in script step of type stringIn the script step, assign the status code input variable to the output variable (see screenshot)Create an output of action of type Stringadd the action in a flow, and add an "IF" flow logic and compare it to any string Expected behavior: since our output of the action is 3 digit number, the "IF" should evaluate to falseUnexpected behavior: instead of 3 digital code and string is evaluated to trueWorkaroundbefore it leaves the script step, make sure to use the .toString() method. outputs.<variable_name>.toString();Related Problem: PRB1409063