Q. What is the output of following Javascript?
Code:var a = 'mcq'; var b = 'buddy'; var c = a/b; document.write(c);
β
Correct Answer: (C)
NaN
var a = 'mcq'; var b = 'buddy'; var c = a/b; document.write(c);
You must be Logged in to update hint/solution