1. What will be the output of the following code? let i = 1; function incrementByValue(value) { i += value; return i; } function limit(fn, maxCalls) { let calls = 0; return function (...args) { if (calls < maxCalls) { calls += 1; return fn(...args); } return undefined; }; } const callbytimes = limit(incrementByValue, 2); console.log(callbytimes(2)); console.log(callbytimes(3)); console.log(callbytimes(4)); console.log(callbytimes(10));
React Developer Interview Questions
3,040 react developer interview questions shared by candidates
Write a javascript program without build in function armstrong number
Initial Phone Screen questions: 1. what is Redux? 2. What is difference between class components and functional components? second Round - coding test: write a code to make a Rest API call to get the data to display the data in a table and apply sorting to the table.
General behavioral questions were asked.
Alternative error handling for specific network codes on fetch.
Where is your current project app deployed to?
About 9 to 10 questions about Load Balancing, MySql. Microservices.
Coding Challenge Frontend React. This was for implementing basic Paging. They provide a couple of components and you have to update them to make them work according the specifications.
A technical React Development Assessment
Viewing 121 - 130 interview questions