About Lesson
In this JavaScript lesson we are going to learn about JavaScript Exponentiation Operator, this operator raises the first operand to the power second operand, and it is a new feature in JavaScript ES8.
Now let’s create a simple example.
1 2 |
console.log(3**2); console.log(4**2); |