Difference between ECMAScript 2016 exponentiation operator and Math.pow()
What is the benefit to using the ECMAScript 2016 exponentiation operator over the current Math.pow()? In other words, besides reducing key strokes, what is the difference between Math.pow(2, 2) =…