Put Logic in a Render Function - STILL NOT WORKING

I have posted this two weeks ago hoping this issue would be fixed but I’m still having problems with this exercise. I have moved my code from line 21 to line 20, I have reset the exercise but nothing works. Can someone let me know how to pass through it?

Here is the link to the exercise:
https://www.codecademy.com/en/courses/react-101/lessons/react-components-advanced-jsx/exercises/render-function-calculations?action=resume

1 Like

There is a bug. I just reported it.

Change:
var friend = friends[1];
to
var friend = friends[0];

And it will run without error.

4 Likes

Use this http://joxi.ru/8AnozjzHq37dYr

I changed it to
var friend = friends[0];

but still throws err.

====error===========

/home/ccuser/workspace/learn-react-02-02-03e/app.js:57
var friend = friends[0];
^
ReferenceError: friends is not defined
at [object Object].render (app.js:22:18)
at [object

1 Like

Yeah. I had the same problem. Changing to friends[0] works.

1 Like

hi stuthi, can you pls share the whole code if possible. Just want to check if I am missing somewhere.
thnx.

Hi! This is the code I have written. But I think now it works for all of them. That’s friends[0], friends[1] and friends[2]. Seems like they have fixed the bug.

1 Like

Hi, did the error you posted got fixed?

I couldn’t fix the error. you your’s got fixed can you please share the solution?
thnx!

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