Q. Consider the following code snippet
console.log(p)
If p is not defined, what would be the result or type of error?
β
Correct Answer: (C)
ReferenceError
Explanation: In the above code snippet, p is not defined. Hence, it gives a ReferenceError.