fix(curriculum): clarify object access in Spreadsheet (#55462)

This commit is contained in:
Supravisor
2024-08-05 19:29:25 +12:00
committed by GitHub
parent acae8cd6b2
commit 4cfcf27a07

View File

@@ -7,9 +7,10 @@ dashedName: step-86
# --description--
The `fn` parameter will be the name of a function, such as `SUM`. Update `apply` to implicitly return the function found at the `fn` property of your `spreadsheetFunctions` object.
Remember that `fn` might not be lowercase, so you'll need to convert it to a lowercase string.
The `fn` parameter will be passed the name of a function, such as `"SUM"`. Update `apply` to implicitly return the function from your `spreadsheetFunctions` object using the `fn` variable as the key for the object access.
Remember that `fn` might not contain a lowercase string, so you'll need to convert it to a lowercase string.
# --hints--