Describe what happens when a user clicks a link in a browser.
Software Engineer Front End Interview Questions
13,458 software engineer front end interview questions shared by candidates
How do you make a function that only calls input function f every 50 milliseconds?
How would you position an object side by side
array related questions
Do you prefer front end or back end programming.
Code some code that checks if any items in an array are greater than 10
Q. If you have three divs inside a container, how would you make it center? Q. How do you make horizontally spread divs into a vertical line in mobile phone?
Just let me ask the questions about the company, no technical things.
How do you make a function that takes f and returns a function that calls f on a timeout?
The first question was JavaScript scoping: var x = 9; var module = { x: 81, getX: function() { this.x = 10 return this.x; } }; module.getX(); // nr 1 -> 10 var retrieveX = module.getX; retrieveX(); // nr 2 -> 9 var boundGetX = retrieveX.bind(module); boundGetX(); // nr 3 -> 81 The second question was FizzBuzz again:
Viewing 31 - 40 interview questions