TapTalent AI

Junior Fullstack Developer

TechnicalFresherFullstackBangaloreMay 2026

8 Questions

01

Introduce Yourself.

02

Is JavaScript single threaded or multi-threaded ?

03

What are microtask and macrotask?

04

What does promises return ?

05

What will be the output of this code ? const promise = new Promise((resolve) => { console.log(1); resolve(); console.log(2); }); console.log(3); console.log(4); setTimeout(() => { console.log(5); }, 100); setTimeout(() => { console.log(6); }, 0); promise.then(() => { console.log(7); }); console.log(8);

06

What is middleware and how is it used ?

07

Write a middleware function for this code where these emails should not be allowed to login. const notAllowedEmails = ["vishal.maurya@taptalent.ai", "vikas.dubey@taptalent.ai"] router.post( "/get-user", async (req, res) => { const email = req.email return res.status(200).json() }

08

What is event loop ?

Aditya Kumar·May 2026

Share yours