🎴 Flashcard Mode
JavaScript Fundamentals Quiz
Card1 / 10
Mastered0
Review0
QuestionClick to flip
Which is not a built-in function?
AnswerClick to flip back
A
exec()
💡 Explanation:
exec() is a method of RegExp objects, not a global built-in function. parseInt(), eval(), and parseFloat() are all global functions available without any object prefix. The exec() method must be called on a RegExp instance and returns match information for a regular expression test.