0
like you have some slot on your bag, and you put your mobile phone on a slot, for example if your array is:
var bag = ["mobile", "laptop", "book'];
it's mean these 3 items are in your bag and when you want to call them:
bag[0];
why 0??
because computer reads the code and index it from 0.



