mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-13 16:04:36 -04:00
fix(curriculum): clarify object access in Spreadsheet (#55462)
This commit is contained in:
@@ -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--
|
||||
|
||||
|
||||
Reference in New Issue
Block a user