Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #243 Print list

Print the contents of the list or array a on the standard output.

console.log(a);
console.table(a);

Displays a as a table where the first column contains the index, and the subsequent column(s) contain the values.
(print a)

New implementation...