hoisted(); // logs "foo" function hoisted() { console.log('foo'); }
notHoisted(); // TypeError: notHoisted is not a function var notHoisted = function() { console.log('bar'); };
Pro tip: use ```triple backticks around text``` to write in code fences