fixes operator precedence
This commit is contained in:
parent
bae0ef44d0
commit
779aad7da9
1 changed files with 5 additions and 5 deletions
|
@ -194,11 +194,11 @@ Here's an extract from the [precedence table](https://developer.mozilla.org/en-U
|
|||
| Precedence | Name | Sign |
|
||||
|------------|------|------|
|
||||
| ... | ... | ... |
|
||||
| 17 | unary plus | `+` |
|
||||
| 17 | unary negation | `-` |
|
||||
| 16 | exponentiation | `**` |
|
||||
| 15 | multiplication | `*` |
|
||||
| 15 | division | `/` |
|
||||
| 16 | unary plus | `+` |
|
||||
| 16 | unary negation | `-` |
|
||||
| 15 | exponentiation | `**` |
|
||||
| 14 | multiplication | `*` |
|
||||
| 14 | division | `/` |
|
||||
| 13 | addition | `+` |
|
||||
| 13 | subtraction | `-` |
|
||||
| ... | ... | ... |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue