Skip to content

Commit

Permalink
article fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
vahmelk99 committed Aug 13, 2021
1 parent d85ba1b commit a99cafd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 1-js/02-first-steps/11-logical-operators/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ if (1 && 0) { // հաշվվում է ինչպես true && false
}
```


## ԵՎ "&&"֊ը գտնում է առաջին սխալական արժեքը

Տրված է մի քանի արժեքներ կապակցված ԵՎ֊ով․
Expand Down Expand Up @@ -217,6 +218,7 @@ alert(1 && 2 && 3) // 3, վերջինը
```

````smart header="ԵՎ `&&`֊ի նախապատվությունը (precedence) ավելի բարձր է քան ԿԱՄ `||`֊ինը"
ԵՎ `&&`֊ի նախապատվությունը (precedence) ավելի բարձր է քան ԿԱՄ `||`֊ինը:

Այսպիսով `a && b || c && d` արտահայտությունը համարժեք է հետևյալ արտահայտությանը՝ `(a && b) || (c && d)`, որտեղ `&&`֊երը փակագծերի մեջ են։

Expand Down

0 comments on commit a99cafd

Please sign in to comment.