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
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ let gen = (function*() {
31
31
})();
32
32
```
33
33
34
-
This can be combined with various initializers to create an Array, Maps or Set.
34
+
This can be combined with various initializers to create an Arrays, Maps or Sets.
35
35
36
36
```js
37
37
let arrayOfUsers = [...*{
@@ -66,6 +66,8 @@ let mapOfUsers = new Map(*{
66
66
});
67
67
```
68
68
69
+
## Code Evolution
70
+
69
71
Since these generator expressions naturally expand to more complex examples, you can keep expanding these with more complex logic as requirements expand. While still remaining in an isolated expression.
0 commit comments