Learn Basic OOP by Building a Shopping Cart - Step 35

Tell us what’s happening: Am I blind or something? Getting this error: You should use arrow syntax to add a callback function to the forEach method which takes a btn parameter.

Your code so far

[…addToCartBtns].forEach(

btn => btn.addEventListener(‘click’, event => {})

);

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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Learn Basic OOP by Building a Shopping Cart - Step 35


Does anyone have an idea, please? I do not understand what is the problem, or I am not seeing something.

Take a closer look at the quotes on the word click

It’s the same if I use " ".
Screenshot_3
Am I missing something?

I think what you have now is fine but possibly for the test to pass you may need to add any omitted parens or curly braces.

2 Likes

Thanks! One combination of parentheses and curly bracers worked! Cheers

1 Like

man, these test cases are awful. Forcing syntax that isn’t needed, why :skull:

It is apparently because in the next exercise the brackets are needed.

Maybe because the step doesn’t ask to implicitly return any callbacks.