Q. Which is the exponentiation operator in JavaScript?
β
Correct Answer: (C)
**
Explanation:
In JavaScript, ** is the exponentiation operator used to raise a number to the power of another.
Example:
console.log(2 ** 3); // Output: 8