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.
1 parent ad92d27 commit e232dd3Copy full SHA for e232dd3
code/solutions/12_1_arrays.js
@@ -1,8 +1,8 @@
1
-topEnv.array = (...values) => values;
+topScope.array = (...values) => values;
2
3
-topEnv.length = array => array.length;
+topScope.length = array => array.length;
4
5
-topEnv.element = (array, i) => array[i];
+topScope.element = (array, i) => array[i];
6
7
run(`
8
do(define(sum, fun(array,
0 commit comments