function getFruitsData()
{
var fruit=[];
fruit.push("Apple");
fruit.push("Mango");
fruit.push("Grapes");
fruit.push("Orange");
return fruit;
}
the fruits data i am sending to template which is coming in console
Now i need to show like this Fruits[0] which will result >>> Apple
right Now in template i using this which is not working
{{#each someOtherList}}
{{this.[Fruits].@index.this}} >> not working
{{Fruits.@index.this}} >> not working
{{Fruits.[@index]}} >> not working
{{/each}}
i don't need to iterate all data i just need specific data according to index i pass