Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js
items.forEach((val, idx) => {
  console.log("index=" + idx + ", value=" + val);
});

This is the functional way of iterating.
for (var i in items) {
   console.log("index=" + i + ", value=" + items[i]);
}

this is a horrible implementation, use the "functional" one above. If you don't need the index, using "for...of" is ok, "for...in" almost never is.
with Ada.Text_IO;
use Ada.Text_IO;
for I in Items'Range loop
   X := Items (I);
   Put_Line (Integer'Image (I) & " " & Integer'Image (X));
end loop;

Assuming Items is an array of integers.

New implementation...