Logo

Javascript Questions Set 90:

Quiz Mode

Redux was created in what year?

1
2
3
4

Solution:

Where are blobs generally stored?

1
2
3
4

Solution:

Which ES6 feature does the useState hook use?

1
2
3
4

Solution:

Which of the following JavaScript logging and debugging tools is feature-rich?

1
2
3
4

Solution:

Which method is used to connect the last vertex back to the first, creating a closed figure?

1
2
3
4

Solution:

Β The behaviour of the instances present of a class inside a method is defined by __________Β 

1
2
3
4

Solution:

const emojis = ["πŸ₯‘", ["✨", "✨", ["πŸ•", "πŸ•"]]];

console.log(emojis.flat(1));

1
2
3
4

Solution:

Which jQuery event is executed when the complete page, including all frames, objects, and images, is fully loaded?

1
2
3
4

Solution:

Β Which of the following is an example to perform the most common XML manipulations using the XML objects invocation?Β 

1
2
3
4

Solution:

Predict the output:


const obj1 = {
property1: 21
};
const descriptor1 = Object.getOwnPropertyDescriptor(obj1, 'property1');
console.log(descriptor1.configurable);
console.log(descriptor1.enumerable);

1
2
3
4

Solution: