JavaScript MCQs with answers Page - 152

Here, you will find a collection of MCQ questions on JavaScript. Go through these questions to enhance your preparation for upcoming examinations and interviews.

To check the correct answer, simply click the View Answer button provided for each question.

Have your own questions to contribute? Click the button below to share your MCQs with others!

+ Add Question

A

Admin • 831.35K Points
Coach

Q. What will be printed?

Code:
let a = [1, 2];
a[10] = 99;
console.log(a.length);
  • (A) 2
  • (B) 11
  • (C) 10
  • (D) 12

A

Admin • 831.35K Points
Coach

Q. What is the output?

Code:
console.log('5' === 5);
  • (A) true
  • (B) false
  • (C) undefined
  • (D) Error

A

Admin • 831.35K Points
Coach

Q. Which method is used to add elements at the beginning of an array?

  • (A) push()
  • (B) unshift()
  • (C) shift()
  • (D) concat()

A

Admin • 831.35K Points
Coach

Q. What will the following return?

Code:
console.log(typeof null);
  • (A) null
  • (B) object
  • (C) undefined
  • (D) function

A

Admin • 831.35K Points
Coach

Q. Which of these is not a primitive data type?

  • (A) String
  • (B) Number
  • (C) Boolean
  • (D) Object

A

Admin • 831.35K Points
Coach

Q. What is the result?

Code:
console.log(0 === -0);
  • (A) true
  • (B) false
  • (C) TypeError
  • (D) undefined

A

Admin • 831.35K Points
Coach

Q. What is returned by JSON.parse('true')?

  • (A) true
  • (B) 'true'
  • (C) SyntaxError
  • (D) undefined

A

Admin • 831.35K Points
Coach

Q. What will be the output?

Code:
console.log(!!0);
  • (A) true
  • (B) false
  • (C) 0
  • (D) undefined

A

Admin • 831.35K Points
Coach

Q. Which function executes a function after a specified time?

  • (A) setInterval()
  • (B) clearTimeout()
  • (C) setTimeout()
  • (D) delay()

A

Admin • 831.35K Points
Coach

Q. What does isNaN('hello') return?

  • (A) true
  • (B) false
  • (C) NaN
  • (D) undefined

Add MCQ in this Category

If you want to share an MCQ question in this category, it's a great idea! It will be helpful for many other students using this website.

Share Your MCQ