Can some one explain how the below function evaluates, appreciate your help in advance!!
if(true, false, false, true, false, 30, 40)
Discussion posts and replies are publicly visible
Unknown said:if(true, false, false, true, false, 30, 40)
This will return false.
The function evaluates the first input - In your case this is "true". Since it evaluates to true, it returns the 2nd input. The 3rd input would be returned if the 1st input evaluated to false.
test this by changing the second input from "false" to "Appian"
Thank you, Rob.