I have a model with a attribute with a value of "0" (zero). My template looks something like this:
{{#count}}{{{count}}} items{{/count}}
{{^count}}-{{/count}}
If myModel.count = 0, the rendered html is nothing. It's like the value "count" is null and not null at the same time.
Mustache documentation for this case: https://github.com/janl/mustache.js#inverted-sections

{{{ count }}}or{{& count}}– avadhutp Nov 19 '12 at 16:39'0'). – bobthecow Dec 12 '12 at 8:03