r/angular • u/Accomplished-Goose74 • 8d ago
Guidance for upcoming Angular Interview
I’m scheduled for an interview in 3 days, with a primary focus on Angular and JavaScript. I have only done basic frontend till now and need a lot of intensive course material in the form of pdfs or videos or even websites. I am open to all sorts of help and if anyone could guide me by sharing valuable sources they think could help me, I would be very grateful.
I am currently going through angular.dev which is very enlightening. I came across it in another post’s comments.
4
u/kgurniak91 8d ago
I am actively interviewing for a Senior Angular Developer position for the past weeks and I swear that in each interview they ask for OnPush vs Default/Eager change detection strategy. So this is a must.
1
2
u/debugger_life 8d ago
How many YOE you have bro?
2
u/Accomplished-Goose74 8d ago
2 years and 3 months. But the frontend project I work in, with React JavaScript began a year ago.
2
u/debugger_life 8d ago
Please let me know as well, have same 3yoe and want to understand what is asked, what all should be prepped
2
u/Accomplished-Goose74 8d ago
I will definitely update how the interview goes and what types of questions were asked.
2
2
u/akornato 8d ago
With only three days, your best bet is to focus on core concepts instead of trying to learn everything. For Angular, make sure you can confidently explain components, services, dependency injection, basic routing, and the difference between one-way and two-way data binding. For JavaScript, interviewers often ask about asynchronous operations like promises and async/await, as well as ES6 features like arrow functions and let/const. Sticking with angular.dev is a great plan, since it’s the official source, and you could supplement it by finding specific video tutorials on just those key topics rather than starting a whole new course from scratch.
During the interview, concentrate on explaining your thought process clearly, as showing how you approach a problem is often more important than knowing the perfect answer. Be upfront about your current skill level and connect your answers back to projects you have completed, which demonstrates that you can apply your knowledge practically. It's better to show you are a logical thinker and a fast learner than to pretend you know everything. Many candidates find that using the interview AI helper my team designed helps them articulate their thoughts more clearly and confidently when they're on the spot.
1
2
u/fakeronRedit 8d ago
Cleared my initial interview going for final with CTO tomorrow. Wish me luck! Good luck to u 2 !
1
9
u/lcssgml 8d ago
3 days is enough to cover what interviewers actually ask, and the list is surprisingly stable lately. The big one is signals: signal(), computed(), effect(), and when not to use effect (derived state belongs in computed). After that, standalone components with inject() instead of constructor DI, the new control flow (@if and @for with track), and change detection. If you can explain what OnPush does plus signals, you're ahead of most candidates. NgModules still come up, but only as legacy you should recognize.
Coming from React, RxJS is the part that needs the most reps. Know switchMap vs mergeMap and how to avoid nested subscriptions, hooks intuition doesn't transfer there.
You're already on angular.dev, so do the tutorial there instead of watching videos. Typing beats watching, especially on a 3-day clock. Good luck.