fix(curriculum): correct every method explanation in spreadsheet project (#54986)

This commit is contained in:
William Spanfelner
2024-05-28 08:22:02 +03:00
committed by GitHub
parent c2bbd98926
commit d064ba117a
@@ -16,7 +16,7 @@ const arr = ["A", "b", "C"];
arr.every(letter => letter === letter.toUpperCase());
```
Add an `everyeven` property to your `spreadsheetFunctions` - use the `.every()` method to check if any element in the array is even.
Add an `everyeven` property to your `spreadsheetFunctions` - use the `.every()` method to check whether all array elements are even.
# --hints--