Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expressions are a means to dynamically calculate values for variables. Names Consider that names of variables are case-sensitive.

...

Convert to Number

If a value of a variable with String data type represents a number then it can be converted. Otherwise an error is raised and the affected Order order fails.

Example:

Expression
"123".toNumber
JSON"var": "\"123\".toNumber"

...

Values of the Number data type can be converted to stringsString.

Example:

Expression
123.toString
JSON"var": "123.toString"

...