If you have something that you want to display once and only if the array has data, use
{{#if items.length}}
//Render
{{/if}}
.length will return 0 for empty arrays so we have achieved a real falsey value.
If you have something that you want to display once and only if the array has data, use
{{#if items.length}}
//Render
{{/if}}
.length will return 0 for empty arrays so we have achieved a real falsey value.