In my AngularJS (1.6) app, I have 3 variables and I'd like to assign a value to my template equal to any of these 3 variables. I need to use any of them, and it's likely that not all will be available.
This is why I need to have a logic OR. If any of those is available, I'd like my SPAN to get this value.
Is it possible to do it like this?
<span>{{ foo || bar || baz }}</span>
Thanks!