Tip 1: Prepare JavaScript and React.js in depth.
Tip 2: Be curious to understand the “why” behind every piece of code to learn JavaScript behaviour.
Tip 3: Practice daily and stay in momentum; it will make your journey easier.
Tip 1: Keep it to one page.
Tip 2: Try to keep it updated.
If you need to protect a route, what approaches would you use, and where would you implement the code (SSR, middleware, useEffect)? Also, explain the order of execution.
Output-based question:
console.log("Raj" - "Anuj" + 10);
console.log("Raj" + "10");
console.log(1 + "-1");
What will be the output of the following JavaScript code, and why?
async function fun() {
console.log('A', await Promise.resolve("E").then(() => 'W'));
console.log('B', await Promise.resolve("F").then(() => console.log("H")));
}
fun();

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?