如果给定的任何一个值是真实的,则渲染一个块。如果指定了一个相反的块,它将在falsy时被渲染。
arguments
{...any}
returns
{String}
{{ assign 'a' true }}{{ assign 'b' false }}{{ assign 'c' false }}{{#or a b c}} All of the above are truthy.{{else}} One or more of the above is falsey.{{/or}}