Quick JavaScript tip; console has more than a .log() method…

console.table({one: 'spam', two: 'Spam'});

//> (index) │  Values
//>   one   │ 'spam'
//>   two   │ 'Spam'

… Aside from custom wrappers; what’s your favorite alternatives to the usual console.log()?