Skip to content

Commit e5840bb

Browse files
committed
Simplified first paragraph.
Changed "every time" to "when" to improve conciseness.
1 parent 5fa3d51 commit e5840bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conditional/else.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Else
22

3-
There is also an `else` clause that will be applied every time the first condition isn’t true. This is very powerful if you want to react to any value, but single out one in particular for special treatment:
3+
There is also an `else` clause that will be applied when the first condition isn’t true. This is very powerful if you want to react to any value, but single out one in particular for special treatment:
44

55
```javascript
66
var umbrellaMandatory;
@@ -53,4 +53,4 @@ if (name === "John") {
5353
assert(name === "Aaron");
5454
```
5555

56-
---
56+
---

0 commit comments

Comments
 (0)