We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f73d93e + 0cda360 commit 09ffdf6Copy full SHA for 09ffdf6
README.md
@@ -93,7 +93,7 @@ In a query that returns a sequence of values, the query variable itself never ho
93
The following example uses the `toArray` method to immediately evaluate a sequence into an array:
94
95
````javascript
96
-mx([1, 2, 3, 4, 5]).select("t => t * t").toArray(); // [1, 2, 3, 4, 5]
+mx([1, 2, 3, 4, 5]).select("t => t * t").toArray(); // [1, 4, 9, 16, 25]
97
````
98
99
The following example uses the `sum` method to evaluate sum of the first 10 numbers:
0 commit comments