Forum Moderators: open
the outer loop is a while loop, with l as the counter, the inner loop looks like "
var done=false;
var l=0;
//search through all seats for availabiltiy
while (! done && l<seats.length)
{
for (var il=0; il < seats[l].length; il++)
Anyway, I get an error that seats[;].length is not an object, an I can't see the error here
Thanks