Skip to content

Commit d5f2485

Browse files
Fixed 'array' orthography
1 parent 51cdcbe commit d5f2485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

experimental/array/array_column.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function array_column(array, column_key, index_key) {
1616
for (var i = 0; i < len; i++) {
1717
if (!typeof array[i] === "object") {
1818
continue;
19-
} else if (index_key === null && arrya[i].hasOwnProperty(column_key)) {
19+
} else if (index_key === null && array[i].hasOwnProperty(column_key)) {
2020
result[i] = array[i][column_key];
2121
} else if (array[i].hasOwnProperty(index_key)) {
2222
if (column_key === null) {

0 commit comments

Comments
 (0)