Logo

Javascript Questions Set 66:

Quiz Mode

  What is the method used to pause “data” events? 

1
2
3
4

Solution:

Which is more widely used than Google Web Toolkit (GWT) at Google?

1
2
3
4

Solution:

 What are the events generated by the Node objects called? 

1
2
3
4

Solution:

How are the objects organized in the HTML Document Object Model (DOM)?

1
2
3
4

Solution:

What is the output of the following code?

function func2(a, b) {}

console.log(func2.length)

1
2
3
4

Solution:

The ____ handler method is invoked when uncaught JavaScript exceptions occur.

1
2
3
4

Solution:

What is the length of the resulting array after filtering the words array to include only words with a length greater than 6?

1
2
3
4

Solution:

To position an object on the left side of the screen, the property used is:

1
2
3
4

Solution:

Predict the output:


function printAdditionFunc(x, y) {
var addNumbers = function () {
result = x + y;
console.log(result);
}
return addNumbers
}

var addNumbersFunc = printAdditionFunc(3, 4)
console.log(addNumbersFunc)

addNumbersFunc()

1
2
3
4

Solution:

Which of the following is the correct syntax for function declaration in ES6?

1
2
3
4

Solution: