Skip to content

Commit 60ea5f6

Browse files
authored
Remove quotes around unary negation operator
1 parent fb5c7b6 commit 60ea5f6

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ In this chapter we concentrate on aspects that are not covered by school arithme
1111
Before we move on, let's grasp the common terminology.
1212

1313
- *An operand* -- is what operators are applied to. For instance in multiplication `5 * 2` there are two operands: the left operand is `5`, and the right operand is `2`. Sometimes people say "arguments" instead of "operands".
14-
- An operator is *unary* if it has a single operand. For example, the unary negation `"-"` reverses the sign of the number:
14+
- An operator is *unary* if it has a single operand. For example, the unary negation `-` reverses the sign of the number:
1515

1616
```js run
1717
let x = 1;

0 commit comments

Comments
 (0)