Discussion :: Javascript - CS
-
Consider the following code snippet
console.log(p)
If p is not defined, what would be the result or type of error?
Answer : Option C
Explanation :
In the above code snippet, p is not defined. Hence, it gives a ReferenceError.
Be The First To Comment