Merge pull request #2622 from leviding/patch-37

FIX: minor typo error
This commit is contained in:
Ilya Kantor 2021-06-13 10:47:39 +03:00 committed by GitHub
commit 2b1600e883
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,8 +63,8 @@ In school maths, we write that as a<sup>b</sup>.
For instance: For instance:
```js run ```js run
alert( 2 ** 2 ); // 2² = 4 alert( 2 ** 2 ); // 2² = 4
alert( 2 ** 3 ); // 2³ = 8 alert( 2 ** 3 ); // 2³ = 8
alert( 2 ** 4 ); // 2⁴ = 16 alert( 2 ** 4 ); // 2⁴ = 16
``` ```