Logo

Javascript Questions Set 100:

Quiz Mode

Which is a fast C++ based JavaScript interpreter?

1
2
3
4

Solution:

Which of the following constants hold the value 2?

1
2
3
4

Solution:

 The localStorage and sessionStorage belongs to ___________ 

1
2
3
4

Solution:

Which of the following web browsers use the WebKit browser engine?

1
2
3
4

Solution:

What is the output of the following JavaScript code?


document.write(9+2 + " = 6 plus 5");

1
2
3
4

Solution:

Which built-in property can be used to count the number of characters in a string, or the number of elements in an array?

1
2
3
4

Solution:

What will be the output of the following JavaScript code? 


 

document.writeln("<br/>navigator.language: "+navigator.language);

1
2
3
4

Solution:

Which of the following is the correct way to access object properties in JavaScript?

1
2
3
4

Solution:

  What will be the output of the following JavaScript code? 


 

 function equalto()

 {  

   int num=10;    

   if(num===”10”)   

      return true;  

   else

        return false;

 } 

1
2
3
4

Solution: