Object Literal console logs
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 });
PreviousTagged template literals