Skip to content

Commit aaf2254

Browse files
committed
article translation
1 parent 5ae1610 commit aaf2254

File tree

1 file changed

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

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# Logical operators
1+
# Operatori logici
22

3-
There are four logical operators in JavaScript: `||` (OR), `&&` (AND), `!` (NOT), `??` (Nullish Coalescing). Here we cover the first three, the `??` operator is in the next article.
3+
În JavaScript există patru operatori logici: `||` (ORI), `&&` (ȘI), `!` (NU), `??` (Fuzionare nulă). În acest articol vorbim doar despre primi trei, operatorul `??` va fi acoperit în următorul articol.
44

5-
Although they are called "logical", they can be applied to values of any type, not only boolean. Their result can also be of any type.
5+
Chiar dacă aceștia sunt denumiți operatori „logici”
6+
<!-- Although they are called "logical", they can be applied to values of any type, not only boolean. Their result can also be of any type. -->
67

78
Let's see the details.
89

0 commit comments

Comments
 (0)