She said me write the program for reverse the array using single loop and find the missing word and 1 more question
Frontend Software Engineer Interview Questions
8,918 frontend software engineer interview questions shared by candidates
The practical part was an implementation of the reusable tables in Angular without any outer dependencies.
React component lifecycles, difference between useMemo and useCallback.
What is your experience to do X?
Describe the situation when you have made a tradeoff between delivering a feature quickly and ensuring good quality.
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();
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?
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.
Viewing 961 - 970 interview questions