fix(curriculum): Clarify instructions for step 81 of spreadsheet project (#53972)

This commit is contained in:
dean glükler 2024-03-06 09:20:44 -07:00 committed by GitHub
parent 33ec40e9c8
commit 3aaa2c1393
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@ dashedName: step-82
# --description--
Declare a `toNumberList` function which takes an `args` parameter, and returns the result of splitting the `args` by commas, and mapping the resulting array to `parseFloat`.
Declare a `toNumberList` function that takes an `args` parameter and implicitly returns the result of splitting the `args` by commas. Then chain a `map` method to your `split` method and pass in `parseFloat` as the argument to the `map` method.
# --hints--