Logo

Javascript Questions Set 152:

Quiz Mode

How to test if two nodes are equal?

1
2
3
4

Solution:

Among the following, which is not a statement in programming?

1
2
3
4

Solution:

Which property is used to obtain browser vendor and version information?

1
2
3
4

Solution:

In React, props should always be kept ________.

1
2
3
4

Solution:

What are the two basic data types in JavaScript?

1
2
3
4

Solution:

What is the main difference between localStorage and sessionStorage?

1
2
3
4

Solution:

Other than console.log(), what else can be used to print output on the screen?

1
2
3
4

Solution:

What will be the output of the code:

var obj1 = {Word: "Hello", Number: 17}; var obj2 = {Word: "Hello", Number: 17}; console.log(obj1 === obj2)

1
2
3
4

Solution:

Which of the following statements is false?

1
2
3
4
5

Solution: