🎯 What you'll learn: How to store data with variables using var, let, and const, JavaScript's 7 primitive data types, how typeof works, the quirky world of type coercion, and why null !== undefined.
1-B 2-B 3-C 4-C | 5 let 6 const 7 = let score = 0; 8 = const cannot be reassigned (TypeError) 9 = 'object' | 10 = const name = 'Ali';