Skip to content

Commit

Permalink
Fixed example exponentiation operator result. (#1504)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmarz authored Nov 10, 2021
1 parent 23b99c4 commit 00e5c6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion concepts/arithmetic-operators/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ JavaScript provides 6 different operators to perform basic arithmetic operations
It is the equivalent of using [`Math.pow()`][mdn-math-pow]

```javascript
4 ** 3; // => 62
4 ** 3; // => 64
4 ** 1 / 2; // => 2
```

Expand Down
2 changes: 1 addition & 1 deletion concepts/arithmetic-operators/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ JavaScript provides 6 different operators to perform basic arithmetic operations
- `**`: The exponentiation operator is used to raise a number to a power.

```javascript
4 ** 3; // => 62
4 ** 3; // => 64
4 ** 1 / 2; // => 2
```

Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/freelancer-rates/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ JavaScript provides 6 different operators to perform basic arithmetic operations
- `**`: The exponentiation operator is used to raise a number to a power.

```javascript
4 ** 3; // => 62
4 ** 3; // => 64
4 ** 1 / 2; // => 2
```

Expand Down

0 comments on commit 00e5c6b

Please sign in to comment.