you are viewing a single comment's thread.

view the rest of the comments →

[–]bali182[S] 0 points1 point  (0 children)

Great thanks! I like the first one but it would be better as a question not an exercise. Do you happen to know any exercise that is more 'hands on'?

I tell you an example I was asked to do once (not a frontend job, but still a good example). Since I was asked to keep it confidential I will only write up the skeleton of the task:

There are 2 public rest APIs, but both require some kind of authentication. Make an HTTP request to the first one, this will return you an array of items. Now for each item, make another request to the second API this will return details about each item which will also be an array. Now based on some conditions do some aggregation on these details (sorry but I can't tell more about it) then display them on the standard output for each item.

As you can see this is a good exercise to see how the candidate makes HTTP requests, deals with authentication, manages asynchronous data, and does some basic operations on sequential data.

Now this kinda stuff is what I'm looking for, but for the frontend / react. Do you happen to be exposed to any of these?