Logo

Javascript Questions Set 79:

Quiz Mode

What is the command to run Node.js programs?

1
2
3
4

Solution:

What is the syntax to load a new document in JS?

1
2
3
4

Solution:

Which command is used to spoof the client user agent?

1
2
3
4

Solution:

 JavaScript Code can be called by using ___________ 

1
2
3
4

Solution:

What syntax is used to describe elements in CSS?

1
2
3
4

Solution:

Which type of database is most appropriate for developers requiring a huge amount of data?

1
2
3
4

Solution:

The correct way to refer to an external script called "name.js" is:

1
2
3
4

Solution:

What does the undefined value mean in JavaScript?

1
2
3
4

Solution:

What is the output of the following code?


var array = [1, 43, 6, 2, 4, 8];

array[8] = 78;

document.write(array);

1
2
3
4

Solution:

What will be the output of the following code?

var orc = {

hair: "green",

age: 20,

a: false

};

orc.hair1 = 2;

delete orc.hair1;

console.log(orc.hair1);

1
2
3
4

Solution: