Logo

Javascript Questions Set 140:

Quiz Mode

Where does the DNS reply go to in a single HTTP redirect?

1
2
3
4

Solution:

Focus and blur is part of what event?

1
2
3
4

Solution:

In JavaScript, variables inside an object are called _____.

1
2
3
4

Solution:

What is the purpose of minifying JavaScript?

1
2
3
4

Solution:

  The snippet that has to be used to check if “a” is not equal to “null” is _________ 

1
2
3
4

Solution:

What is the output?


 let i;

for(i=0;i<6;i++)

{

  if(i==3)

   continue;

  if(i==5)

  break;

  document.write(i+",");

}

1
2
3
4

Solution:

What does the fadeout() method do?

1
2
3
4

Solution:

 When the “end” event fires on EOF when no more data will arrive, which function is called? 

1
2
3
4

Solution:

Which of the following code to be used to trim whitespaces?

1
2
3
4

Solution:

Why was "The Good Parts" designed as a language subset in JavaScript?

1
2
3
4

Solution: