Skip to content

Instantly share code, notes, and snippets.

@sauron
Created January 30, 2014 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sauron/8708630 to your computer and use it in GitHub Desktop.
Save sauron/8708630 to your computer and use it in GitHub Desktop.
Simple example of how to use the console.table() function for data visualization.
// Use of console.table()
var iKnow = [
{ lenguage: "Ruby", level: 10 },
{ lenguage: "Go", level: 5 },
{ lenguage: ".Net", level: 8 },
{ lenguage: "FoxPro", level: 10 }
];
console.table(iKnow);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment