How can I avoid having the {{f = ...}} statement in the third line print out the content of forecast[day.iso]?
{{f = ...}}
forecast[day.iso]
I want to avoid using fore
fore
It's not the best answer, but its also an option: since you can concatenate multiple expressions, but just the last one is rendered, you can finish your expression with "" and your variable will be hidden.
""
So, you could define the variable with:
{{f = forecast[day.iso]; ""}}