I've an indexed array. How can I loop thru it using Handlebars? I'm using #each /each for loop but to which variable is the value assigned inside the block.
My data loops like this.
{
id: "12424",
title: "Chit Chat with Kimberly Bauer",
description: "Discuss about what's going to happen to Jack Bauer in Season 9 of 24",
from: "12/16/2012 9:00am EST",
to: "12/16/2012 10:00am EST",
duration: "1:00 hr",
invitees: [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]"
]
}
I want to display all the invitees.