I was answering a StackOverflow question, where someone asked whether you could style console.table statements,
as you can do with console.log. It turns out that there's no styling capabilities.
I worked on a really hacky solution to get around this by allowing you to use console.log to style objects in a table like fashion.
There were several limitations, such as not being able to set width and height properties. My workaround was to pad each object's
property values with spaces to have equal number of characters.