Logo

Javascript Questions Set 64:

Quiz Mode

What are the two main types of API functions in Node.js?

1
2
3
4

Solution:

Which jQuery method is used to hide a certain HTML element?

1
2
3
4

Solution:

What is the output of the following JavaScript code?

1
2
3

Solution:

Which folder contains the Minify control panel?

1
2
3
4

Solution:

What are the parameters of the attachEvent function?

1
2
3
4

Solution:

The benefits of the Closure Compiler are _____.

1
2
3
4

Solution:

 A conditional expression is also called a _________ 

1
2
3
4

Solution:

 

What will be the output of the following JavaScript code?


var arr = [7, 5, 9, 1];  

var value = Math.max.apply(null, arr);  

document.writeln(value); 

1
2
3
4

Solution:

Middleware functions provide a medium to interact with dispatched actions before they reach the reducer.

1
2
3
4

Solution: