Logo

Javascript Questions Set 191:

Quiz Mode

The use of scripted HTTP is done in ______.

1
2
3
4

Solution:

Which of the following is not a JavaScript data type?

1
2
3
4

Solution:

Which of the following objects length property belongs to?

1
2
3
4

Solution:

What is a Module in Node.js?

1
2
3
4

Solution:

Which function is used to invoke a function repeatedly after a certain amount of time?

1
2
3
4

Solution:

Which of the following methods adds and connects a point to a cubic Bézier curve?

1
2
3
4

Solution:

 Which method of the iterable object returns an iterator object for the collection?

1
2
3
4

Solution:

<script>

var first_string = "The rain in Vadodara";

var first_pattern = /ara/g;

document.write(first_pattern.lastIndex);

</script>

1
2
3
4

Solution:

What is the distinctive feature of a prompt box?

1
2
3
4

Solution:

What is the output of the following code?

var a = 100;

if (a === 101) {

document.write(a % 10);

} else if (a === 102) {

document.write(a - 100);

} else {

document.write(a + 10);

}

1
2
3
4

Solution: