esdown
esdown copied to clipboard
exponentiation operator
Is it possible to add exponentiation operator support:
const foo = 5 ** 2
let bar = 3
bar **= 3
console.log (foo, bar) // 25, 27