Q1651. How do you create route groups in the App Router?
Route groups allow you to organize routes without affecting the URL structure. You create them by wrapping folder names in parentheses `()`. ``` app/ ├── (marketing)/ │ ├...
Technical Question Bank · Peer-Reviewed
Search and filter frequently asked interview questions across technical, programming, and behavioral domains. Tailor your interview preparation by difficulty for freshers or experienced developers (2,728 available).
Route groups allow you to organize routes without affecting the URL structure. You create them by wrapping folder names in parentheses `()`. ``` app/ ├── (marketing)/ │ ├...
In Vuex application, creating a computed property every time whenever we want to access the store's state property or getter is going to be repetitive and verbose, especi...
Modules can be import ed using the import keyword. You can import modules in three ways- Example: ```python import array #import ing using the original module name ``` im...
The purpose of exec method is similar to test method but it executes a search for a match in a specified string and returns a result array, or null instead of returning t...
Class components can be restricted from re-rendering when their input props are the same using **PureComponent or shouldComponentUpdate**. Now you can do the same with fu...
Parallel routes allow you to render multiple pages simultaneously in the same layout. They are defined using slots with the `@` convention. ``` app/ ├── layout.js ├── pag...
You can use object spread operator syntax in order to combine mapState helper(which returns an object) with other local computed properties. This way it simplify merging ...
Inheritance allows One class to gain all the members(say attributes and methods) of another class. Inheritance provides code reusability, makes it easier to create and ma...
You can change inline style or classname of a HTML element using javascript DOM-manipulation 1. **Using style property:** You can modify inline style using style property...
The `React.lazy` function lets you render a dynamic import as a regular component. It will automatically load the bundle containing the `OtherComponent` when the componen...
HireXTech uses essential storage to remember your study preferences and third-party advertising cookies via Google AdSense in compliance with GDPR. You can choose to enable essential cookies only or accept all cookies. Read our Privacy Policy.