Getting Friendly with Git: Your Code’s Best BuddyImagine Git as a super-smart assistant for your code. It’s like a superhero that keeps track of every little change you make while you’re…Mar 41Mar 41
Modules in JavascriptIn JavaScript, a module is a way to organise and structure code by encapsulating its functionality. It allows you to split your code into…Feb 14Feb 14
Angular Routing — Part 1In Angular, routing refers to the mechanism by which the application’s views (components) are mapped to specific URLs or paths. It allows…Jan 25Jan 25
Dependency injection in AngularIn Angular, dependencies refer to services and objects that a class requires to execute specific tasks. Dependency Injection (DI) is a…Jan 25Jan 25
Event Looping in JS — Part 1The Event Loop is a continuous process that handles the execution of code, managing the call stack, microtask queue, and callback queue to…Jan 18Jan 18