Please write what the 4 console logs will output below: const objectQuiz = { foo: "bar", func: function() { let that = this; // let self = there; console.log(this.foo); console.log(that.foo); console.log(self.foo); (function() { console.log(this.foo); console.log(that.foo); }()); } }; objectQuiz.func();
Junior Frontend Developer Interview Questions
13,301 junior frontend developer interview questions shared by candidates
Please write the numbers 1-4 in the order they will print to the console in the following function: (function() { console.log(1); setTimeout(function(){console.log(2)}, 500); setTimeout(function(){console.log(3)}, 0); console.log(4); })();
How can we get the number of elements in an array?
basic CSS question
1. Study the functionality here, fix this broken code 2. See interview process
What is redux and hooks in react?
Given a simple design in Figma, implement the UI using React (or your framework of choice). Styling is relatively important. Functionality involves basic interactions, such as click handlers.
Do you have more framework or base JavaScript experience?
State Management, RxJs, Route Guards, modular design, Bootstrap, Redux
Converting an Figma design for an iPhone screen to HTML/CSS code
Viewing 1411 - 1420 interview questions