TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Interview Questions for Front End Developers

2 pointsby gcz92almost 12 years ago
I am trying to aggregate a list of some good questions that could be asked for a Front-End Developer interview. What questions do you know of or have you used in an interview?

3 comments

domrdyalmost 12 years ago
Create a money exchange calculator, that is bi-directional, as in $ -&gt; €, € -&gt; $. It covers basic arithmetic, event handling and maybe include an API call to one of the exchange rate API providers for ajax &#x2F; JSON. The HTML &#x2F; CSS should be based on a popular framework like bootstrap or foundation.<p>Also some basic questions that test theoretical knowledge like difference between null and undefined, prototype chains, function scope, module pattern etc.
deadfallalmost 12 years ago
How to parse JSON response with jQuery?<p>The problem with using posted questions or ones from online is that people may have already seen or look up the answer. This could cause problems getting a feel for experience and or skill level. I think for a frontend developer I would like to see what they have built. What frameworks they prefer and why.
Donitoalmost 12 years ago
Create an infinite scrolling effect for an image gallery. This will test out the following:<p>* Ajax * Event handling (scroll) * Basic arithmetic (e.g. when to trigger a new request based on % page scrolled) * Template&#x2F;DOM insertion * Thinking about edge cases (e.g. what happens when the page is resized, or the ajax request has no more elements to return)