- TLC Home Home
- Discussions Discussions
- Documentation Documentation
- Knowledge Base Knowledge Base
- Education Education
- Blog Blog
- Support Desk Support Desk
01-21-2015 01:38 AM
Solved! Go to Solution.
01-21-2015 04:03 AM
b['JoinedVariable'] = b['mobileDevice'] + ":" + b['language'] + "-" + b['country'] + ":" + b['pageName'] + "(" + b['productId'] + ")";However you would need to be careful that all the variables are strings and not objects or arrays.
01-21-2015 07:39 AM
01-21-2015 07:58 AM
01-21-2015 08:15 AM
b['productId'] || "defaultvalue"instead so you would end up with: b['mobileDevice'] + ":" + b['language'] + "-" + b['country'] + ":" + b['pageName'] + "(" + (b['productId']||'defaultvalue') + ")"; Which means that if there is no productId it would populate it with the defaultvalue
Copyright All Rights Reserved © 2008-2023