Skip to content

Instantly share code, notes, and snippets.

View fgcarto's full-sized avatar

Francois Goulet fgcarto

View GitHub Profile

What kind of iteration to use when in JavaScript

For loops

for (var i = 0; i < array.length; i++) {
}
  • Code has to run in old versions of IE.