Hi all
I try following lines of code in a Power Page Website:
{% assign myObject = {"A": 123, "B": 47839} %}
{% if myObject %}
myObject.A: '{{ myObject.A }}'
{% else %}
myObject is null!
{% endif %}
output is always 'myObject is null!
Is it possible to work with custom objects in Power Pages liquid? What do I wrong?