25.
What is the purpose of the JavaScript Math object?
To create and manipulate arrays.
To manipulate strings and perform string concatenation.
To perform mathematical operations like square roots and random number generation.
To work with dates and times.
Correct: C
The JavaScript Math object provides a set of built-in mathematical functions, such as Math.sqrt() for calculating square roots, Math.random() for generating random numbers, and Math.pow() for exponentiation.