JavaScript

Answer all questions carefully. After submission, you will see a detailed result and answer review.

Question 1
How is the JavaScript "symbol" primitive data type unique?
Question 2
Which JavaScript primitive data type is used to represent binary data?
Question 3
Which of the following is a valid JavaScript primitive data type for storing whole numbers?
Question 4
Which of the following is the correct syntax to print a page using JavaScript?
Question 5
Which of the following function of Number object returns a string value version of the current number?
Question 6
What will be the output of the following JavaScript code? <pre class = "prettyprint"><xmp> const a = 11; const a = 12; </xmp></pre>
Question 7
What does the JavaScript "typeof" operator return for a variable of the "undefined" primitive data type?
Question 8
Which of the following function of Array object represents the source code of an object?
Question 9
What will be the output of the following JavaScript code? <pre class = "prettyprint"><xmp> let a = 12; { var a = 12; console.log(a); } </xmp></pre>
Question 10
Which of the following function of String object causes a string to be displayed in the specified size as if it were in a <font size = 'size'> tag?