If you try 9n**9n**9n
in Chrome\'s console, Chrome breaks (it resembles an infinite loop).
Background information:
In JavaScript you can use n suffix for making the number as bigint (simpy big numbers). Big numbers have different ways of computations. Usually they are more "expensive" to compute. It does not use the processors built-in methods for calculations. Instead bigints use soft computations.
Description of the issue:
9n**9n means 9^9 (9*9*9*9*9*9*9*9*9). It is 387420489. Even if you multiply 387420489 by itself it is really big number. But **9n means you want to compute 387420489^9 which is really really very big number. It seems for chrome it takes too long to calculate it or some unknown issue happens.
Basically it must be a bug which needs to be reported. Freezing the browser in weird way is not good user experience.