I have a question about benchpressjs: say, I have an array, I want to skip the output for the first and second item in the array, here is my code:
*{{{ each localNews.topics }}}
{{{ if @index !="0" }}}
{{{ if @index !="1" }}}
<div>{@value}</div>
{{{ end }}}
{{{ end }}}
{{{ end }}}*
but the code is not working, any ideas or suggestion? thanks in advance