I'm trying to use an "if then else" statement on an assign node. I'm getting an error in debug mode that there's an error in evaluating the expression.
Is it possible for me to do this? If so, please share sample javascript. Or do I need to use a branch node or two to get this done?
here's my javascript that's failing.
if (_configuration.main.PF_EmpEmailSend == "yes") {
GetEmp_EmployeeWorkEmailAddress();
} else { _configuration.main.PF_EmpEmailSend; }
Thank you in advance for your time!
Thanks,
Derek