Learn Functional Programming by Building a Spreadsheet - Step 103

I have read several times the other threads on this topic (#102 & #103). I need help. Big time.

Your code so far

``“”: nums=>(“”),‘’

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0

Challenge Information:

Learn Functional Programming by Building a Spreadsheet - Step 103

Hi!
You simply need an empty string as the key here. Your code has an empty template literal followed by an empty string. Don’t put a space in the empty string. It is just an empty string.

2 Likes

Thanks for your reply. Just to be clear my code is: “”: nums=>(“”),
The test result in the console is:
// running tests
Your empty string property function should return the argument.
// tests completed

1 Like

Great!. So what do the parentheses do? And the instructions say the function takes an argument and returns the argument.

2 Likes

Nothing!
That’s the bad news but the good news (for me) is that I have now found the answer and completed the final step.
Many thanks for your help.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.