Correct answer: Strings in JS are case-sensitive. In JavaScript, string comparison using === checks for both value and type. Even though 'Hello' and "hello" are both strings, the first letter is uppercase in one and lowercase in the other. Because JavaScript is case-sensitive, it will return false.'Hello' === 'hello' → false because 'H' ≠ 'h'