Skip to content

Commit 4fd7c97

Browse files
Merge pull request #176
Function object, NFE
2 parents a21acb6 + 4b7cfb4 commit 4fd7c97

File tree

8 files changed

+127
-127
lines changed

8 files changed

+127
-127
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
function makeCounter() {
22
let count = 0;
33

4-
// ... your code ...
4+
// ... codul vostru ...
55
}
66

77
let counter = makeCounter();
88

99
alert( counter() ); // 0
1010
alert( counter() ); // 1
1111

12-
counter.set(10); // set the new count
12+
counter.set(10); // setează noul count
1313

1414
alert( counter() ); // 10
1515

16-
counter.decrease(); // decrease the count by 1
16+
counter.decrease(); // scade count cu 1
1717

18-
alert( counter() ); // 10 (instead of 11)
18+
alert( counter() ); // 10 (în loc de 11)

1-js/06-advanced-functions/06-function-object/2-counter-inc-dec/_js.view/test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
describe("counter", function() {
22

3-
it("increases from call to call", function() {
3+
it("crește de la un apel la altul", function() {
44

55
let counter = makeCounter();
66

@@ -11,7 +11,7 @@ describe("counter", function() {
1111

1212

1313
describe("counter.set", function() {
14-
it("sets the count", function() {
14+
it("setează count", function() {
1515

1616
let counter = makeCounter();
1717

@@ -23,7 +23,7 @@ describe("counter", function() {
2323
});
2424

2525
describe("counter.decrease", function() {
26-
it("decreases the count", function() {
26+
it("scade count", function() {
2727

2828
let counter = makeCounter();
2929

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
The solution uses `count` in the local variable, but addition methods are written right into the `counter`. They share the same outer lexical environment and also can access the current `count`.
2+
Soluția folosește `count` în variabila locală, dar metodele de adăugare sunt scrise direct în `counter`. Acestea împart același mediu lexical extern și pot accesa de asemenea `count` curent.

1-js/06-advanced-functions/06-function-object/2-counter-inc-dec/task.md

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

33
---
44

5-
# Set and decrease for counter
5+
# Set și decrease pentru counter
66

7-
Modify the code of `makeCounter()` so that the counter can also decrease and set the number:
7+
Modificați codul din `makeCounter()` astfel încât numărătorul să poată de asemenea să scadă și să seteze numărul:
88

9-
- `counter()` should return the next number (as before).
10-
- `counter.set(value)` should set the counter to `value`.
11-
- `counter.decrease()` should decrease the counter by 1.
9+
- `counter()` ar trebui să returneze următorul număr (ca înainte).
10+
- `counter.set(value)` ar trebui să seteze counter la `value`.
11+
- `counter.decrease()` ar trebui să scadă counter cu 1.
1212

13-
See the sandbox code for the complete usage example.
13+
Consultați codul sandbox pentru exemplul complet de utilizare.
1414

15-
P.S. You can use either a closure or the function property to keep the current count. Or write both variants.
15+
P.S. Puteți utiliza fie un closure sau proprietatea funcției pentru a păstra numărul curent. Ori scrieți ambele variante.

1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/_js.view/source.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function sum(a){
2-
// Your code goes here.
2+
// Codul vostru aici.
33

44
}
55

1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
1. For the whole thing to work *anyhow*, the result of `sum` must be function.
3-
2. That function must keep in memory the current value between calls.
4-
3. According to the task, the function must become the number when used in `==`. Functions are objects, so the conversion happens as described in the chapter <info:object-toprimitive>, and we can provide our own method that returns the number.
2+
1. Pentru ca totul să funcționeze *oricum*, rezultatul lui `sum` trebuie să fie o funcție.
3+
2. Funcția respectivă trebuie să păstreze în memorie valoarea curentă între apeluri.
4+
3. Conform sarcinii, funcția trebuie să devină număr atunci când este folosită în `==`. Funcțiile sunt obiecte, deci conversia are loc așa cum este descrisă în capitolul <info:object-toprimitive>, iar noi putem furniza propria noastră metodă care returnează numărul.
55

6-
Now the code:
6+
Acum codul:
77

88
```js demo run
99
function sum(a) {
@@ -28,28 +28,28 @@ alert( sum(6)(-1)(-2)(-3) ); // 0
2828
alert( sum(0)(1)(2)(3)(4)(5) ); // 15
2929
```
3030

31-
Please note that the `sum` function actually works only once. It returns function `f`.
31+
Vă rugăm să rețineți că funcția `sum` funcționează de fapt o singură dată. Ea returnează funcția `f`.
3232

33-
Then, on each subsequent call, `f` adds its parameter to the sum `currentSum`, and returns itself.
33+
Apoi, la fiecare apelare ulterioară, `f` adaugă parametrul său la suma `currentSum` și se returnează pe sine.
3434

35-
**There is no recursion in the last line of `f`.**
35+
**Nu există recursivitate în ultima linie a funcției `f`.**
3636

37-
Here is what recursion looks like:
37+
Iată cum arată recursivitatea:
3838

3939
```js
4040
function f(b) {
4141
currentSum += b;
42-
return f(); // <-- recursive call
42+
return f(); // <-- apel recursiv
4343
}
4444
```
4545

46-
And in our case, we just return the function, without calling it:
46+
Și în cazul nostru, returnăm doar funcția, fără să o apelăm:
4747

4848
```js
4949
function f(b) {
5050
currentSum += b;
51-
return f; // <-- does not call itself, returns itself
51+
return f; // <-- nu se apelează pe sine, se returnează pe sine
5252
}
5353
```
5454

55-
This `f` will be used in the next call, again return itself, as many times as needed. Then, when used as a number or a string -- the `toString` returns the `currentSum`. We could also use `Symbol.toPrimitive` or `valueOf` here for the conversion.
55+
Acest `f` va fi folosit în apelul următor, returnându-se din nou pe sine, de câte ori este nevoie. Apoi, atunci când este folosit ca număr sau șir --- `toString` returnează `currentSum`. De asemenea am putea folosi `Symbol.toPrimitive` sau `valueOf` aici pentru conversie.

1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/task.md

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

33
---
44

5-
# Sum with an arbitrary amount of brackets
5+
# Sumă cu un număr arbitrar de paranteze
66

7-
Write function `sum` that would work like this:
7+
Scrieți funcția `sum` care ar funcționa astfel:
88

99
```js
1010
sum(1)(2) == 3; // 1 + 2
@@ -14,4 +14,4 @@ sum(6)(-1)(-2)(-3) == 0
1414
sum(0)(1)(2)(3)(4)(5) == 15
1515
```
1616

17-
P.S. Hint: you may need to setup custom object to primitive conversion for your function.
17+
P.S. Sugestie: este posibil să fie nevoie să configurați o conversie personalizată de la obiect la primitivă pentru funcția dvs.

0 commit comments

Comments
 (0)