// Short Circuiting (&& and ||) 'use strict'; // Use ANY data type, return ANY data type, // short-circuiting // If the first value is truthy value, then immediately return that value // OR circuiting returns the first truthy value of all the operands or the last value if all the operands are falsy // AND operand will return first falsy value or the last value if all the operands are truthy // U..