{{/expression}}
{{/ helperKeyOrMethod }}
Ends a {{#expression}} block. Generally, you should end a section with the helper name like:
{{# if( this.over16 ) }} Time to drive {{/ if }}
You can also end a section with just {{/}}
like:
{{# if( this.over16 ) }} Time to drive {{/}}
Parameters
- helperKeyOrMethod
{String}
:A name that matches the opening key, method or helper name. It’s also possible to simply write
{{/}}
to end a block.