You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardexpand all lines: 1-js/06-advanced-functions/06-function-object/5-sum-many-brackets/solution.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
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.
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`.
32
32
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.
34
34
35
-
**There is no recursion in the last line of`f`.**
35
+
**Nu există recursivitate în ultima linie a funcției`f`.**
36
36
37
-
Here is what recursion looks like:
37
+
Iată cum arată recursivitatea:
38
38
39
39
```js
40
40
functionf(b) {
41
41
currentSum += b;
42
-
returnf(); // <-- recursive call
42
+
returnf(); // <-- apel recursiv
43
43
}
44
44
```
45
45
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:
47
47
48
48
```js
49
49
functionf(b) {
50
50
currentSum += b;
51
-
return f; // <-- does not call itself, returns itself
51
+
return f; // <-- nu se apelează pe sine, se returnează pe sine
52
52
}
53
53
```
54
54
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.
0 commit comments