Question 1: Variable Scope and Hoisting

(function(){
  var a = b = 5;
})();
console.log(b);

Expected Output:

5

Follow-Up Questions:

Explanation:


Question 2: Floating-Point Precision

console.log(0.1 + 0.2 === 0.3);

Expected Output:

false

Follow-Up Questions: