Created
January 30, 2014 13:47
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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