for... in Loops

for (i in students) {
    document.write(i + ": " + student[i]);
}

Infinite Loops, break, continue
Home

Internet II: Day 2