Code Match Challenge
Can you guess the output of each code snippet correctly?
1. What will this JavaScript print?
console.log(typeof null);
2. What does this HTML produce?
<b>Bold Text</b>
3. What’s the result?
let x = 10; x += "5"; console.log(x);