TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Interview Questions for Front End Developers

2 点作者 gcz92将近 12 年前
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 条评论

domrdy将近 12 年前
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.
deadfall将近 12 年前
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.
Donito将近 12 年前
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)