Tutorial

console.table() in JavaScript

Published on September 28, 2016
Default avatar

By Alligator.io

console.table() in JavaScript

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

The console.table() allows to display data in the console in a nice tabular format. It comes in very handy when having to visualize complex arrays or objects. It can display tabular data for arrays or objects:

var someArray = [
 "Blowin' in the Wind",
 "Like a Rolling Stone",
 "Knockin' On Heaven's Door"
];

console.table(someArray);

// Array of arrays:
var anotherArray = [
 ["One", "Two"],
 ["Three", "Four"],
 ["Five", "Six"]
];

console.table(anotherArray);

And here’s an example with an object:

function HitSingle(title, artist,
  year, album) {
  this.title = title;
  this.artist = artist;
  this.year = year;
  this.album = album;
}

var favHit = new HitSingle(
    "Like a Prayer",
    "Madonna",
    "1989",
    "Like a Prayer"
    );

console.table(favHit);

There’s an optional second argument to console.table(): an array with the names for the columns.

Try it! Open your console to see the result. Keep in mind though that console.table() is not supported in IE.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Alligator.io

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel