Which of the following are the errors in JavaScript?
Load time errors
Run time errors:
Logical Errors:
All of the above
Correct Answer : B
Javascript string using double quotes is exactly the same as a string using single quotes?
Find output of below code
var a = '20'; var b = a = 30; document.write(a+b);
What are the two basic groups of dataypes in JavaScript?