A Tricky JavaScript Interview Question Asked by Google and Amazon

A Tricky JavaScript Interview Question Asked by Google and Amazon

Image for post

The following will be a short explanation, along with some solutions, of a popular JavaScript question that tends to get asked in developer interviews. The question usually looks something like the following:

This question deals with the topics: closures, setTimeout, and scoping. The correct answer to this is question is:

Index: 4, element: undefined(printed 4 times).

If that?s not what you expected, then hopefully the rest of this article will help explain why this is the case in JavaScript.

Why is this question so popular?

A user on reddit mentioned that they were asked this question in an Amazon developer interview. I?ve also been asked this type of closure + loop question in interviews myself ? even in a Google interview.

This question tests your knowledge of some important JavaScript concepts, and because of how the JavaScript language works this is actually something that can come up quite often when you?re working ? namely, needing to use setTimeout or some sort of async function within a loop.

A solid understanding of functional/block scope, anonymous functions, closures, and IIFE?s will definitely make you a better JavaScript developer and help you out in future interviews.

Solutions

I?ve actually covered this question and some solutions in previous posts:

  • 3 common JavaScript closure questions
  • 3 JavaScript questions to watch out for during coding interviews

To quote from a previous article:

The reason for this is because the setTimeout function creates a function (the closure) that has access to its outer scope, which is the loop that contains the index i. After 3 seconds go by, the function is executed and it prints out the value of i, which at the end of the loop is at 4 because it cycles through 0, 1, 2, 3, 4 and the loop finally stops at 4.arr[4] does not exist, which is why you get undefined.

There are two popular solutions to the question. One involves passing the needed parameters into the inner function, and the other solution makes use of ES6.

A user on the reddit post provided a similar answer to this question as well. There?s also a good explanation of closures by a user on Stack Overflow.

This often confuse people who are new to JavaScript or functional programming. It is a result of misunderstanding what closures are. A closure does not merely pass the value of a variable or even a reference to the variable. A closure captures the variable itself!

If you have any JavaScript or interview questions you?d like me to write about or explain, let me know in the comments! Thanks for reading.

You can also practice solving JavaScript coding challenges on Coderbyte.

19

No Responses

Write a response