Remove quotes around equation sign
This commit is contained in:
parent
6109448768
commit
488e8504a7
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ Many comparison operators we know from maths:
|
||||||
|
|
||||||
- Greater/less than: <code>a > b</code>, <code>a < b</code>.
|
- Greater/less than: <code>a > b</code>, <code>a < b</code>.
|
||||||
- Greater/less than or equals: <code>a >= b</code>, <code>a <= b</code>.
|
- Greater/less than or equals: <code>a >= b</code>, <code>a <= b</code>.
|
||||||
- Equality check is written as `a == b` (please note the double equation sign `'='`. A single symbol `a = b` would mean an assignment).
|
- Equality check is written as `a == b` (please note the double equation sign `=`. A single symbol `a = b` would mean an assignment).
|
||||||
- Not equals. In maths the notation is <code>≠</code>, in JavaScript it's written as an assignment with an exclamation sign before it: <code>a != b</code>.
|
- Not equals. In maths the notation is <code>≠</code>, in JavaScript it's written as an assignment with an exclamation sign before it: <code>a != b</code>.
|
||||||
|
|
||||||
[cut]
|
[cut]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue