Time for some more education.
I've come across a javascript 'for loop' which loops through a nested object. What does the ,10 portion, represent in the condition statement?
for (var x = 0; x < parseInt(myObj[myCategory][MySubCategory]['amount'], 10); x++)
{
// stuff happens
}
I am not finding any documentation that talks about this so I presume I'm just unclear on what I would even search on. Thanks.