Say I have an object,
{
"empID": "1002729041",
"empName": "ABHIJIT AUDHYA"
},
{
"empID": "1004563331",
"empName": "ABDUL MULLA"
},
{
"empID": "1004703190",
"empName": "ABDUL RAZIC"
},
{
"empID": "1004912437",
"empName": "ABDUL HAFEEZ"
}
I can use handlebars to loop through the entire object using,
{{#each myObj}}
<li>{{empName}}</li>
{{/each}}
Say, I want to start from the 3rd object, ignoring the 1st and 2nd. Is there a simple way to achieve this?