HomeArenaQuiz #3

Quiz #3

136
Created by Coding Artist

Quiz #3

1 / 10

In Javascript which method is used to access an element by id?

2 / 10

let x = 12.34;
console.log(typeof x);
What will the above code output to the console?

3 / 10

What is the right place to insert a JavaScript?

4 / 10

let x = Math.round(8.5);
console.log(x);
What will the above code output to the console?

5 / 10

let x = 5;
let x = 0;
console.log(x);
What will the above code output to the console?

6 / 10

let names = ["Jake", "Henry", "Tom"];
console.log(names.shift());
What will the above code output to the console?

7 / 10

let x = Math.min();
console.log(x);

What will the above code output to the console?

 

8 / 10

var x = 0;
for (var x = 5; x < 10; x++);
console.log(x);
What will the above code output to the console?

9 / 10

let a = Boolean("false");
console.log(a);

What will the above code output to the console?

10 / 10

 var x = 5;
 var x = 0;
 console.log(x);
What will the above code output to the console?

Your score is

The average score is 40%

0%

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

20 − fourteen =

Most Popular