MCQ
Which operator is used for exponentiation in JavaScript?
JavaScript
A ^
B **
C Math.pow()
D Both b and c
Explanation

Both ** operator and Math.pow() can be used for exponentiation.