Object Literal console logs

JavaScrip, ES6

ES6 TIP: Use object literal shorthand to quickly output a variable with a label in the console!

const FirstName = 'Ash';
const LastName = 'Hitchcock';

console.log({ FirstName, LastName });