Tip 1 : React is must
Tip 2 : Must Know basics of Web Designing
Tip 3 : Don't take deadlines lightly
Tip 1:Have Good Projects. Basically, They see your projects and then decides to move further or not.
Tip 2:Take deadlines seriously.
Build a react web app to search hacker news.
You will be building a web app using the HN Search API that lets users search for hacker news posts and view details of each post.
Home screen
Search field on the top
A list of search results below the search field
Entering a query in the search field triggers the search results API:
E.g. GET http://hn.algolia.com/api/v1/search?query=test
Upon receiving results, populate a list of search results below
Post detail screen
Upon clicking a search result, take the user to the post detail screen
Using objectID obtained from search results, call the Get item API to retrieve post details
E.g. GET http://hn.algolia.com/api/v1/items/12701272
On the detail screen, the following should be displayed
Title
Points
List of all comments (“children” field)
Note: The API is public and does not need any API keys. Documentation is available at https://hn.algolia.com/api
Question were ask to check Presence of Mind and How fast you can come up with solution

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the return keyword?