Skip to content

Commit e44fb23

Browse files
Merge pull request #185 from Cr3yZe/translation
Logical operators
2 parents 274027b + eb6f7e4 commit e44fb23

File tree

18 files changed

+154
-156
lines changed

18 files changed

+154
-156
lines changed

1-js/02-first-steps/11-logical-operators/1-alert-null-2-undefined/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The answer is `2`, that's the first truthy value.
1+
Răpunsul este `2`, aceasta este prima valoare truthy.
22

33
```js run
44
alert( null || 2 || undefined );

1-js/02-first-steps/11-logical-operators/1-alert-null-2-undefined/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 5
22

33
---
44

5-
# What's the result of OR?
5+
# Care este rezultatul lui OR?
66

7-
What is the code below going to output?
7+
Care va fi output-ul codului de mai jos?
88

99
```js
1010
alert( null || 2 || undefined );
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
The answer: first `1`, then `2`.
1+
Răspunsul: prima dată `1`, iar apoi `2`.
22

33
```js run
44
alert( alert(1) || 2 || alert(3) );
55
```
66

7-
The call to `alert` does not return a value. Or, in other words, it returns `undefined`.
7+
Apelul către `alert` nu returnează o valoare. Sau, prin alte cuvinte, returnează `undefined`.
88

9-
1. The first OR `||` evaluates its left operand `alert(1)`. That shows the first message with `1`.
10-
2. The `alert` returns `undefined`, so OR goes on to the second operand searching for a truthy value.
11-
3. The second operand `2` is truthy, so the execution is halted, `2` is returned and then shown by the outer alert.
9+
1. Primul OR `||` evaluează operantul din stânga sa `alert(1)`. Aceasta afișează primul mesaj cu `1`.
10+
2. `alert` întoarce `undefined`, așa că OR merge la al doilea operand căutând o valoare truthy.
11+
3. Cel de al doilea operand `2` este truthy, așa că execuția este oprită, `2` este returnat fiind afișat de către `alert`-ul exterior.
1212

13-
There will be no `3`, because the evaluation does not reach `alert(3)`.
13+
`3` nu va fi afișat, deoarece evaluarea nu ajunge la `alert(3)`.

1-js/02-first-steps/11-logical-operators/2-alert-or/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 3
22

33
---
44

5-
# What's the result of OR'ed alerts?
5+
# Care este rezultatul alertelor combinate prin OR?
66

7-
What will the code below output?
7+
Care va vi output-ul codului de mai jos?
88

99
```js
1010
alert( alert(1) || 2 || alert(3) );

1-js/02-first-steps/11-logical-operators/3-alert-1-null-2/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The answer: `null`, because it's the first falsy value from the list.
1+
Răspunsul: `null`, deoarece este prima valoare falsy din listă.
22

33
```js run
44
alert( 1 && null && 2 );

1-js/02-first-steps/11-logical-operators/3-alert-1-null-2/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 5
22

33
---
44

5-
# What is the result of AND?
5+
# Care este rezultatul lui AND?
66

7-
What is this code going to show?
7+
Ce va afișa codul de mai jos?
88

99
```js
1010
alert( 1 && null && 2 );
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
The answer: `1`, and then `undefined`.
1+
Răspunsul: `1`, iar apoi `undefined`.
22

33
```js run
44
alert( alert(1) && alert(2) );
55
```
66

7-
The call to `alert` returns `undefined` (it just shows a message, so there's no meaningful return).
8-
9-
Because of that, `&&` evaluates the left operand (outputs `1`), and immediately stops, because `undefined` is a falsy value. And `&&` looks for a falsy value and returns it, so it's done.
7+
Apelul către `alert` întoarce `undefined` (afișează doar un mesaj, deci nu întoarce nimic semnificativ).
108

9+
Din cauza aceasta, `&&` evaluează operantul din stânga (output-ul `1`), și se oprește imediat, deoarece `undefined` este o valoare falsy. Iar `&&` caută o valoare falsy și o întoarce, deci a terminat.

1-js/02-first-steps/11-logical-operators/4-alert-and/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 3
22

33
---
44

5-
# What is the result of AND'ed alerts?
5+
# Care este rezultatul alertelor combinate cu AND?
66

7-
What will this code show?
7+
Ce va afișa acest cod?
88

99
```js
1010
alert( alert(1) && alert(2) );
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
The answer: `3`.
1+
Răspunsul: `3`.
22

33
```js run
44
alert( null || 2 && 3 || 4 );
55
```
66

7-
The precedence of AND `&&` is higher than `||`, so it executes first.
7+
Prioritatea lui AND `&&` este mai mare decât cea a lui OR `||`, așa că se execută primul.
88

9-
The result of `2 && 3 = 3`, so the expression becomes:
9+
Rezultatul lui `2 && 3 = 3`, așa că expresia devine:
1010

1111
```
1212
null || 3 || 4
1313
```
1414

15-
Now the result is the first truthy value: `3`.
16-
15+
Acum rezultatul este prima valoare truthy: `3`.

1-js/02-first-steps/11-logical-operators/5-alert-and-or/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ importance: 5
22

33
---
44

5-
# The result of OR AND OR
5+
# Rezultatul lui OR AND OR
66

7-
What will the result be?
7+
Care va fi rezultatul?
88

99
```js
1010
alert( null || 2 && 3 || 4 );

1-js/02-first-steps/11-logical-operators/6-check-if-in-range/task.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ importance: 3
22

33
---
44

5-
# Check the range between
5+
# Verificați intervalul dintre
66

7-
Write an `if` condition to check that `age` is between `14` and `90` inclusively.
7+
Scrie o condiție `if` care verifică dacă `age` se încadrează între `14` și `90` inclusiv.
88

9-
"Inclusively" means that `age` can reach the edges `14` or `90`.
9+
"Inclusiv" înseamnă că `age` poate fi de asemenea `14` sau `90`.

1-js/02-first-steps/11-logical-operators/7-check-if-out-range/solution.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
The first variant:
1+
Prima variantă:
22

33
```js
44
if (!(age >= 14 && age <= 90))
55
```
66

7-
The second variant:
7+
A doua variantă:
88

99
```js
1010
if (age < 14 || age > 90)

1-js/02-first-steps/11-logical-operators/7-check-if-out-range/task.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ importance: 3
22

33
---
44

5-
# Check the range outside
5+
# Verifică intervalul din afară
66

7-
Write an `if` condition to check that `age` is NOT between `14` and `90` inclusively.
7+
Scrie o condiție `if` care verifică dacă `age` NU este cuprins înte `14` și `90` inclusiv.
88

9-
Create two variants: the first one using NOT `!`, the second one -- without it.
9+
Creează două variante: în prima să folosești NOT `!`, iar în ceea de-a doua -- să nu.
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
The answer: the first and the third will execute.
1+
Răspuns: primul și al treilea se vor executa.
22

3-
Details:
3+
Detalii:
44

55
```js run
6-
// Runs.
7-
// The result of -1 || 0 = -1, truthy
8-
if (-1 || 0) alert( 'first' );
6+
// Este executat.
7+
// Rezultatul dintre -1 || 0 = -1, truthy
8+
if (-1 || 0) alert( 'primul' );
99

10-
// Doesn't run
10+
// Nu este executat
1111
// -1 && 0 = 0, falsy
12-
if (-1 && 0) alert( 'second' );
12+
if (-1 && 0) alert( 'al doilea' );
1313

14-
// Executes
15-
// Operator && has a higher precedence than ||
16-
// so -1 && 1 executes first, giving us the chain:
14+
// Este executat
15+
// Oparatorul && are o prioritate mai mare decât ||
16+
// așadar -1 && 1 este exuctat mai întâi, dând lanțul următor:
1717
// null || -1 && 1 -> null || 1 -> 1
18-
if (null || -1 && 1) alert( 'third' );
18+
if (null || -1 && 1) alert( 'al treilea' );
1919
```
2020

1-js/02-first-steps/11-logical-operators/8-if-question/task.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ importance: 5
22

33
---
44

5-
# A question about "if"
5+
# O întrebare despre "if"
66

7-
Which of these `alert`s are going to execute?
7+
Care dintre următoarele `alert`e se vor executa?
88

9-
What will the results of the expressions be inside `if(...)`?
9+
Care va fi rezultatul expresiilor din interiorul lui `if(...)`?
1010

1111
```js
12-
if (-1 || 0) alert( 'first' );
13-
if (-1 && 0) alert( 'second' );
14-
if (null || -1 && 1) alert( 'third' );
12+
if (-1 || 0) alert( 'primul' );
13+
if (-1 && 0) alert( 'al doilea' );
14+
if (null || -1 && 1) alert( 'al treilea' );
1515
```
1616

1-js/02-first-steps/11-logical-operators/9-check-login/solution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ if (userName === 'Admin') {
2222
}
2323
```
2424

25-
Note the vertical indents inside the `if` blocks. They are technically not required, but make the code more readable.
25+
Observați indentările verticale din interiorul blocului `if`. Acesta nu sunt neapărat necesare, dar fac codul mult mai lizibil.

1-js/02-first-steps/11-logical-operators/9-check-login/task.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ importance: 3
22

33
---
44

5-
# Check the login
5+
# Verificați login-ul
66

7-
Write the code which asks for a login with `prompt`.
7+
Scrieți un bloc de cod care necesită logare prin `prompt`.
88

9-
If the visitor enters `"Admin"`, then `prompt` for a password, if the input is an empty line or `key:Esc` -- show "Canceled", if it's another string -- then show "I don't know you".
9+
Dacă vizitatorul introduce `"Admin"`, atunci `prompt` pentru o parolă, dacă input-ul este gol sau `key:Esc` -- afișați "Anulat", dacă este un alt string -- atunci afișați "Nu te cunosc".
1010

11-
The password is checked as follows:
11+
Parola este verificată după cum umrmează:
1212

13-
- If it equals "TheMaster", then show "Welcome!",
14-
- Another string -- show "Wrong password",
15-
- For an empty string or cancelled input, show "Canceled"
13+
- Dacă este egal cu "TheMaster", atunci afișează "Welcome!",
14+
- Un alt string -- afișează "Parolă greșită",
15+
- Pentru un string gol sau input-ul este anulat, afișează "Anulat",
1616

17-
The schema:
17+
Schema:
1818

1919
![](ifelse_task.svg)
2020

21-
Please use nested `if` blocks. Mind the overall readability of the code.
21+
Vă rugăm folosiți blocuri `if` nested. Aveți în vedere lizibilitatea generală a codului.
2222

23-
Hint: passing an empty input to a prompt returns an empty string `''`. Pressing `key:ESC` during a prompt returns `null`.
23+
Sugestie: transmiterea unui input gol către un `prompt` returnează un string gol `''`. Apăsând `key:ESC` în timpul unui prompt returnează `null`.
2424

2525
[demo]

0 commit comments

Comments
 (0)