Skip to content

Commit 76ef126

Browse files
authored
Fix typo
That importance -> The importance
1 parent 4d01fc2 commit 76ef126

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/11-logical-operators

1 file changed

+1
-1
lines changed

1-js/02-first-steps/11-logical-operators/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ This leads to some interesting usage compared to a "pure, classical, boolean-onl
123123

124124
It means that `||` processes its arguments until the first truthy value is reached, and then the value is returned immediately, without even touching the other argument.
125125

126-
That importance of this feature becomes obvious if an operand isn't just a value, but an expression with a side effect, such as a variable assignment or a function call.
126+
The importance of this feature becomes obvious if an operand isn't just a value, but an expression with a side effect, such as a variable assignment or a function call.
127127
128128
In the example below, only the second message is printed:
129129

0 commit comments

Comments
 (0)