Which is the exponentiation operator in JavaScript?
Options:
Explanation:
The exponentiation operator in JavaScript is
** which is used to calculate the result of first operand's to the power of the second operators i.e.,
x**y = x to the power of y (xy).
Tags:
JavaScript
Answer:
Which is the exponentiation operator in JavaScript **.