Multiple choice technology programming languages

parseJSON is a standard function available in javascript like alert, eval and others.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

parseJSON is NOT a standard built-in JavaScript function like alert(), eval(), or parseInt(). Standard JSON parsing uses JSON.parse() (available in modern JavaScript) or eval() with careful validation in legacy code. There is no global parseJSON() function in standard JavaScript specifications.