Hi All
Can you please tell me how to go about adding 2 numbers in ARIS scripting.
When i declare the variables and use "+" to add the numbers i see that they are concatinating
but not adding up.Could you please tell how to go about it.
Thanks and Regards
Manojna Kadiri
Nikita Martyanov on
You have to use Number() function. Example:
var3=Number(var1)+Number(var2)
Does it work?