Q. What is the default state of a new useState variable?
Code:
const [count, setCount] = useState();
β
Correct Answer: (B)
undefined
Explanation: If no argument is passed to useState, the default state is undefined.