Answers for "liquid - order of operation"

0

liquid - order of operation

{% if true and false and false or true %}
  This evaluates to false, since the tags are checked like this:

  true and (false and (false or true))
  true and (false and true)
  true and false
  false
{% endif %}
Posted by: Guest on May-26-2021

Browse Popular Code Answers by Language