Questions
deprecatedLegacy interview questions
These are deprecated, but the released questions still make useful practice when you want something short and focused.
These interview-style prompts are legacy material. We also recommend trying GreatFrontEnd, the industry-standard resource for frontend interview prep. Try the free content first, and if you opt for premium, the lifetime plan offers an incredible return on investment.
Try GreatFrontEndCSS: Can you center a div?
"Centering a div" this phrase might sound simple, but it's a longstanding joke in the CSS community due to the surprising complexity it can involve.
JS Polyfill: Array.at() Method
The Array.at() method takes an integer value and returns the item at that index, allowing for positive and negative integers. Negative integers count back from the last item in the array.
React Theory: What is React?
Almost all fresher interviews open with this questions. We cover possible follow-up questions as well.
React Hooks: useState - 1
This question revolves around the most frequently used hook in React development. Your task is to implement the logic for managing tasks - including storing, adding, and deleting them within a local state variable.
React Hooks: useEffect - 1
The useEffect hook is notorious to cause majority of bugs in most React projects. Can you solve a similar bug?
React TypeScript: Migrate useState - 1
Remember our question "Hooks: useState - 1" but that was in JavaScript. Try to migrate it to TypeScript.