Enjoy 20% off all plans by following us on social media. Check out other promotions!
Front End Interview Guidebook

Front End Interview JavaScript Questions — How to Prepare

Guide to preparing for JavaScript questions in front end / web developer interviews — Concepts to know, interview rubrics, and 70+ important practice questions.

The difference between coding JavaScript coding questions vs algorithmic coding questions is that the former is usually specific to the front end domain and it makes the most sense to use JavaScript (or TypeScript) to complete them. You will also probably need to make use of browser/JavaScript-specific APIs and/or utilize HTML/CSS/JavaScript knowledge.

These JavaScript coding questions tend to be practical in nature and can come in one or more of the following categories:

  1. Implement standard built-in classes or methods in the JavaScript language.
  2. Implement a utility function/class commonly found in popular libraries.

Examples

JavaScript Standard Built-in Classes/methods

It may seem redundant to implement standard classes/methods when they are already part of the language. However, browsers inconsistencies used to be a rampant problem and some language APIs are not found in older browsers. Hence developers had to resort to polyfilling, the act of providing modern functionality on older browsers that do not natively support it by implementing these APIs in downloaded JavaScript. Being able to implement these native functions also shows good understanding of front end fundamentals.

There's more to these functions than meets the eye. Let's take the innocent Array.prototype.map for example. Are you aware that:

  1. It passes 4 arguments to the callback, including the index and this?
  2. It keeps the "holes" in sparse arrays, aka [1, 2, , 4].map(val => val * val) === [1, 4, , 16].
  3. The range of elements processed by map is set before the first call to callbackfn. Elements which are appended to the array after the call to map begins will not be visited by callbackfn. If existing elements of the array are changed, their value as passed to callbackfn will be the value at the time map visits them; elements that are deleted after the call to map begins and before being visited are not visited. Source: Array.prototype.map ECMAScript specification

Your implementation doesn't have to handle all of these cases, especially the array mutation one. However, it's a positive signal if you mentioned these cases. The closer your implementation is to the specification, the more senior/experienced you will appear to be.

These functions/classes are commonly needed when building software with JavaScript but aren't in the standard language (for now).

If you take a look at the source code of these libraries, you might find some of the implementation to be quite complex. This is because there are lots of obscure real world use cases that the library has to support. Similar to the standard functions, you're not expected to handle all of these edge cases within an interview setting but you get points for calling them out.

What to do during JavaScript Coding Interviews

JavaScript coding interviews share a lot of similarities with algorithmic coding interviews. In general, you should:

  1. Find out what platform you are coding on and familiarize yourself with the coding environment:
    • The supported editor shortcuts.
    • Whether you can execute code.
    • Whether you can install 3rd party dependencies.
  2. Make your self introduction under a minute. Unless requested, do not take longer than this otherwise you might not have enough time to code.
  3. Ask clarifying questions upon receiving the question. Clarify the following:
    • Can you use newer JavaScript syntax (ES2016 and beyond)?
    • Whether the code is meant to run in the browser or on the server (e.g. Node.js).
    • Browser support, as this will affect the browser APIs you can use.
  4. Propose a solution to your interviewer. Unlike coding interviews, the focus of JavaScript coding interviews is usually not on complex data structures and algorithms. It's possible and likely you can jump straight to the optimal solution with the best choice of data structures and algorithms.
  5. Code out your solution and explain your code to your interviewer while you are coding.
  6. After coding, read through your code once and try to spot basic errors like typos, using variables before initializing them, using APIs incorrectly, etc.
  7. Outline some basic test cases and some edge cases. Test your code with these cases and determine if your code passes them. If it fails, debug the issue(s) and fix them.
  8. Optional: Explain the time/space complexity if the code involved algorithmic optimizations and smart choice of data structures.
  9. Explain any tradeoffs you made, cases you explicitly didn't handle, and how you would improve the code if you had more time.
  10. The interview might not end here, the interviewer might have follow-up questions for you on this question or give you another question. Be prepared for them.

How to Prepare for JavaScript Coding Interviews

  1. Be familiar with HTML, CSS, JavaScript, and DOM concepts by referring to the "Important Concepts" below. The Quiz section can also be a good start since you might be asked on these concepts in the form of quiz questions during coding.
  2. Pick a study plan and practice the JavaScript coding questions recommended for the selected study plan. It's also alright to study for a certain topic as you are doing the questions.

Important Concepts

CategoryImportant Topics
Data StructuresArrays, Maps, Stacks, Trees, Sets
AlgorithmsBinary Search, Breadth-first Search, Depth-first Search, Recursion
JavaScript LanguageData types (checking for types, type coercion), Scope, Closures, Callbacks, How this keyword works, Object-oriented Programming in JavaScript (prototypes, classes, methods), Arrow functions vs normal functions, Invoking functions via Function.prototype.apply()/Function.prototype.call(), Promise, Handling variadic arguments
DOMDOM traversal, DOM creation, DOM manipulation, Accessing element/node properties, Event delegation
Runtime APIsTimer (setTimeout, setInterval)

JavaScript Coding Interview Rubrics

JavaScript coding interviews are similar to algorithmic coding interviews and the way to go about the interviews should be similar. Naturally, there will be some overlaps with algorithmic coding interviews regarding how candidates are evaluated during JavaScript coding interviews.

  • Problem Solving: Use a systematic and logical approach to understanding and addressing a problem. Break down the problem into smaller independent problems. Evaluate different approaches and their tradeoffs.
  • Software Engineering Foundation: Familiarity with data structures, algorithms, runtime complexity analysis, use of design patterns, design solution with clean abstractions.
  • Domain Expertise: Understanding of the front end domain and the relevant languages: Browser (DOM and DOM APIs), HTML, CSS, JavaScript, Performance.
  • Communication: Ask questions to clarify details and clearly explaining one's approach and considerations.
  • Verification: Identify various scenarios to test the code against, including edge cases. Be able to diagnose and fix any issues that arise.

Useful Tips

  • Wishful thinking. JavaScript's standard library doesn't have some useful data structures and algorithms like queue, heap, binary search, which can make your life easier during JavaScript coding interviews. However, you can ask the interviewer if you can pretend such a data structure/algorithm exists and use it directly in your solution without implementing it.
  • Pure functions. Aim to write pure functions which have the benefit of reusability and modularity, aka functions which don't rely on state outside of the function and doesn't cause side effects.
  • Choose data structures wisely. Pay attention to your choice of data structures and be aware of the time complexities of the code. Be familiar with the time/space complexities of the basic JavaScript Array, Object, Set, Map operations should you want to use them in your solution. Some of these time/space complexities differ across languages. Don't write code that runs in O(n2) if it can accomplished in O(n) runtime with the use of hash maps.
  • this matters. If a function accepts a callback function as a parameter, consider how the this variable should behave. For many built-in functions, this is provided as one of the arguments the callback function is invoked with.
  • Mutations within callback functions. Beware of callback functions mutating the data structure it is operating on. You probably do not need to handle this case during interviews but you should explicitly mention such cases if it's relevant.
  • Recursion edge cases.
    • If you have identified that solving the question requires recursion, ask about the input size and how to handle the case of recursion stack overflow. Usually you won't have to handle it but raising this issue is a good signal.
    • Nested deep data structures can have recursive references to itself, which makes certain operations like serialization much trickier. Ask the interviewer if you have to handle such cases. Usually you won't have to handle it but raising this issue is a good signal.

Best Practice Questions

From experience, the best JavaScript coding interview questions to practice, as determined by frequency and important concepts covered are:

GreatFrontEnd has a comprehensive list of JavaScript coding questions that you can practice. There are also automated tests cases you can run your code against to verify the correctness and solutions written by ex-FAANG Senior Engineers.

Note that we are intentionally vague in some of the questions and don't present the full requirements upfront in the question description. However, we'll cover as much ground as possible in the solution. It may be frustrating while reading the solutions to see that you've missed out some things, but this trains you to think ahead and consider what are the possible areas you have to take note of when working on the solution. Better to find out during practice than during actual interviews.