What was your last favorite project?
Javascript Interview Questions
1,680 javascript interview questions shared by candidates
what is the difference between let and var?
You are given a Maze in the size of NxM represented by a boolean matrix where 0 is empty, and 1 is blocked (wall). 1. Code a function 'solve1', which returns true if there's a path from points 's' (start) to 'e' (end) which passes only through zeros. It should return 'false' if there is no possible path. Possible movements: up, right, down, left (no diagonals) For example, this maze should return true: s 1 1 1 0 0 0 1 1 1 e 1 1 1 1 1 And this one should return false: s 1 1 1 0 1 0 1 1 1 e 1 1 1 1 1
About pair programming. A surprise since it's not mentioned in the job posting
Design in JavaScript how you would implement a navigation bar for a SPA and load/show the content appropriately.
Design an API that would get user data and play a video based on a specific stream url.
Why do you want to work at Later?
Explain the use of the bind method.
What's the difference between React/Redux and Backbone javascript frameworks?
High level system design questions
Viewing 851 - 860 interview questions