From 3aaa2c139396437b776d3cb940d0a23acef29f5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dean=20gl=C3=BCkler?= <32249655+deanglukler@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:20:44 -0700 Subject: [PATCH] fix(curriculum): Clarify instructions for step 81 of spreadsheet project (#53972) --- .../646d44da986f2bc9b72f5fe2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-functional-programming-by-building-a-spreadsheet/646d44da986f2bc9b72f5fe2.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-functional-programming-by-building-a-spreadsheet/646d44da986f2bc9b72f5fe2.md index a18edccf181..558cef71b0f 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-functional-programming-by-building-a-spreadsheet/646d44da986f2bc9b72f5fe2.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-functional-programming-by-building-a-spreadsheet/646d44da986f2bc9b72f5fe2.md @@ -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--