Val
This Flow Script tutorial explains how to use the Val function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the Val function with syntax and examples.
The Val function changes the string variable x into a numeric value. This is rarely necessary as Flow automatically coerces string values into a numeric value.
The syntax for the Val function is:
Val(x)
x - the numeric value which is to be changed into a string.
The Val function returns a numeric value.
Let's look at some Val function examples and explore how to use the Val function.
Val(7)
Result: 7Last updated
Was this helpful?
Was this helpful?