Q. What will be the result of Boolean('')? (A) false (B) true (C) null (D) undefined ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) false Explanation: An empty string is a falsy value, so Boolean('') returns false.