Skip to content

Commit b218b18

Browse files
committed
fixes #1261
1 parent 4d30548 commit b218b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/07-operators/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Before we move on, let's grasp some common terminology.
2626
alert( y - x ); // 2, binary minus subtracts values
2727
```
2828

29-
Formally, we're talking about two different operators here: the unary negation (single operand: reverses the sign) and the binary subtraction (two operands: subtracts).
29+
Formally, in the examples above we have two different operators that share the same symbol: the negation operator, a unary operator that reverses the sign, and the subtraction operator, a binary operator that subtracts one number from another.
3030

3131
## String concatenation, binary +
3232

0 commit comments

Comments
 (0)